Conditions | 1 |
Paths | 1 |
Total Lines | 18 |
Code Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | 1 | public function collect(Request $request, Response $response, \Throwable $exception = null) |
|
18 | { |
||
19 | 1 | \Symfony\Bridge\Doctrine\DataCollector\DoctrineDataCollector::collect($request, $response, $exception); |
|
20 | |||
21 | 1 | $this->data['entities'] = []; |
|
22 | 1 | $this->data['errors'] = []; |
|
23 | 1 | $this->data['caches'] = [ |
|
24 | 'enabled' => false, |
||
25 | 'log_enabled' => false, |
||
26 | 'counts' => [ |
||
27 | 'puts' => 0, |
||
28 | 'hits' => 0, |
||
29 | 'misses' => 0, |
||
30 | ], |
||
31 | 'regions' => [ |
||
32 | 'puts' => [], |
||
33 | 'hits' => [], |
||
34 | 'misses' => [], |
||
35 | ], |
||
39 |