Total Complexity | 1 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | trait DataCollectorSymfonyCompatibilityTrait |
||
11 | { |
||
12 | abstract protected function doCollect(Request $request, Response $response, \Throwable $exception = null); |
||
13 | |||
14 | /** |
||
15 | * @param Request $request |
||
16 | * @param Response $response |
||
17 | * @param \Throwable|null $exception |
||
18 | */ |
||
19 | public function collect(Request $request, Response $response, \Throwable $exception = null) |
||
39 | } |