Services_Hoptoad::errorHandler PHP Method

errorHandler() public method

Handle a php error
Author: Rich Cavanaugh
public errorHandler ( string $code, string $message, string $file, string $line ) : void
$code string
$message string
$file string
$line string
return void
    public function errorHandler($code, $message, $file, $line)
    {
        if ($code == E_STRICT && $this->reportESTRICT === false) {
            return;
        }
        $this->notify($code, $message, $file, $line, debug_backtrace());
    }