1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<?php
namespace Laminas\DeveloperTools;
interface ReportInterface
{
/**
* @param string $ip
* @return self
*/
public function setIp($ip);
/**
* @return string
*/
public function getIp();
/**
* @param string $uri
* @return self
*/
public function setUri($uri);
/**
* @return string
*/
public function getUri();
/**
* @param \DateTime $time
* @return self
*/
public function setTime($time);
/**
* @return \DateTime
*/
public function getTime();
/**
* @param string $token
* @return self
*/
public function setToken($token);
/**
* @return string
*/
public function getToken();
/**
* @param string $error
* @return self
*/
public function addError($error);
/**
* @return array|null
*/
public function getErrors();
/**
* @return bool
*/
public function hasErrors();
/**
* @param string $method
* @return self
*/
public function setMethod($method);
/**
* @return string
*/
public function getMethod();
/**
* @param string $name
* @return bool
*/
public function hasCollector($name);
/**
* @param string $name
* @return Collector\CollectorInterface|null
*/
public function getCollector($name);
/**
* @return array
*/
public function getCollectors();
/**
* @return array
*/
public function getCollectorNames();
/**
* @param array $collectors
* @return self
*/
public function setCollectors(array $collectors);
/**
* @param Collector\CollectorInterface $collector
* @return self
*/
public function addCollector(Collector\CollectorInterface $collector);
}