think\exception\Handle::isIgnoreReport PHP Метод

isIgnoreReport() защищенный Метод

protected isIgnoreReport ( Exception $exception )
$exception Exception
    protected function isIgnoreReport(Exception $exception)
    {
        foreach ($this->ignoreReport as $class) {
            if ($exception instanceof $class) {
                return true;
            }
        }
        return false;
    }