| Conditions | 6 |
| Paths | 3 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 42 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 24 | protected function inTrace(array $frames): bool |
||
| 25 | { |
||
| 26 | foreach ($frames as $frame) { |
||
| 27 | if (array_key_exists($frame, 'file') && $this->exception->getFile() == $frame['file'] && |
||
|
|
|||
| 28 | array_key_exists($frame, 'line') && $this->exception->getLine() == $frame['line']) { |
||
| 29 | return true; |
||
| 30 | } |
||
| 31 | } |
||
| 32 | |||
| 33 | return false; |
||
| 34 | } |
||
| 69 |