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 | * @param string $name |
||
47 | * @param string $method |
||
48 | */ |
||
49 | public function get(string $name, string $method) |
||
61 | |||
62 | /** |
||
63 | * {@inheritdoc} |
||
64 | */ |
||
65 | public function getName() |
||
69 | } |
||
70 |