1 | <?php |
||
7 | abstract class AbstractSoapDataCollector extends DataCollector |
||
8 | { |
||
9 | private $callRegistry; |
||
10 | |||
11 | /** |
||
12 | * SoapDataCollector constructor. |
||
13 | * @param SoapCallRegistry $callRegistry |
||
14 | */ |
||
15 | 9 | public function __construct(SoapCallRegistry $callRegistry) |
|
19 | |||
20 | /** |
||
21 | * @see collect() |
||
22 | */ |
||
23 | 9 | protected function doCollect() |
|
36 | |||
37 | 3 | public function reset() |
|
45 | |||
46 | /** |
||
47 | * {@inheritdoc} |
||
48 | */ |
||
49 | 9 | public function getName() |
|
53 | |||
54 | /** |
||
55 | * @return int |
||
56 | */ |
||
57 | 9 | public function getTotal() |
|
61 | |||
62 | /** |
||
63 | * @return int Time in milliseconds. |
||
64 | */ |
||
65 | public function getTime() |
||
69 | |||
70 | /** |
||
71 | * @return array |
||
72 | */ |
||
73 | public function getRequests() |
||
77 | } |
||
78 |