1 | <?php |
||
20 | final class JoseCollector extends DataCollector |
||
21 | { |
||
22 | /** |
||
23 | * @var Collector[] |
||
24 | */ |
||
25 | private $collectors = []; |
||
26 | |||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | */ |
||
30 | public function collect(Request $request, Response $response, \Exception $exception = null) |
||
36 | |||
37 | /** |
||
38 | * @param Collector $collector |
||
39 | */ |
||
40 | public function add(Collector $collector) |
||
44 | |||
45 | /** |
||
46 | * {@inheritdoc} |
||
47 | */ |
||
48 | public function getName() |
||
52 | |||
53 | /** |
||
54 | * @return array |
||
55 | */ |
||
56 | public function getData(): array |
||
60 | |||
61 | /** |
||
62 | * {@inheritdoc} |
||
63 | */ |
||
64 | public function reset() |
||
68 | } |
||
69 |