Laravel\Lumen\Exceptions\Handler::shouldntReport PHP 메소드

shouldntReport() 보호된 메소드

Determine if the exception is in the "do not report" list.
protected shouldntReport ( Exception $e ) : boolean
$e Exception
리턴 boolean
    protected function shouldntReport(Exception $e)
    {
        foreach ($this->dontReport as $type) {
            if ($e instanceof $type) {
                return true;
            }
        }
        return false;
    }