Conditions | 3 |
Paths | 4 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | public function &offsetGet($key) |
||
22 | { |
||
23 | $caller = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1)[0]; |
||
24 | |||
25 | $this->stack[] = [ |
||
|
|||
26 | 'entry' => $key, |
||
27 | 'file' => isset($caller['file']) ? $caller['file'] : null, |
||
28 | 'line' => isset($caller['line']) ? $caller['line'] : null, |
||
29 | ]; |
||
30 | |||
31 | return $this; |
||
32 | } |
||
76 |