Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
41 | public function callback($errno, $errstr, $errfile = '', $errline = 0, $errcontext = []) |
||
42 | { |
||
43 | $this->log[(string)microtime(true)] = [ |
||
44 | 'no' => $errno, |
||
45 | 'str' => $errstr, |
||
46 | 'file' => $errfile, |
||
47 | 'line' => $errline, |
||
48 | 'context' => $errcontext, |
||
49 | ]; |
||
50 | return $this->handle(); |
||
51 | } |
||
52 | |||
76 |