@@ -54,11 +54,13 @@ |
||
54 | 54 | // var_export($caller); |
55 | 55 | |
56 | 56 | // TODO How to handle perfectly the missing fields of the backtrace? |
57 | - if (isset($caller['file'])) |
|
58 | - $this->file = $caller['file']; |
|
57 | + if (isset($caller['file'])) { |
|
58 | + $this->file = $caller['file']; |
|
59 | + } |
|
59 | 60 | |
60 | - if (isset($caller['line'])) |
|
61 | - $this->line = $caller['line']; |
|
61 | + if (isset($caller['line'])) { |
|
62 | + $this->line = $caller['line']; |
|
63 | + } |
|
62 | 64 | |
63 | 65 | // var_export($this->stack); |
64 | 66 | } |