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