Laravel\Lumen\Exceptions\Handler::shouldReport PHP Method

shouldReport() public method

Determine if the exception should be reported.
public shouldReport ( Exception $e ) : boolean
$e Exception
return boolean
    public function shouldReport(Exception $e)
    {
        return !$this->shouldntReport($e);
    }