Recca0120\LaravelTracy\Exceptions\Handler::report PHP Метод

report() публичный Метод

Report or log an exception.
public report ( Exception $e )
$e Exception
    public function report(Exception $e)
    {
        if (is_null($this->exceptionHandler) === false) {
            $this->exceptionHandler->report($e);
        }
    }

Same methods

Handler::report ( Exception $e ) : void