Conditions | 4 |
Paths | 4 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
43 | public function isThisContext( |
||
44 | string $file, |
||
45 | int $line, |
||
46 | ): bool { |
||
47 | if ($this->memory_location->file !== $file) { |
||
48 | return false; |
||
49 | } |
||
50 | if ($this->memory_location->line_start > $line) { |
||
51 | return false; |
||
52 | } |
||
53 | if ($this->memory_location->line_end < $line) { |
||
54 | return false; |
||
55 | } |
||
56 | return true; |
||
57 | } |
||
64 |