Ouzo\ExceptionHandling\ErrorHandler::stopsExecution PHP Method

stopsExecution() public static method

public static stopsExecution ( $errno )
    public static function stopsExecution($errno)
    {
        switch ($errno) {
            case E_ERROR:
            case E_CORE_ERROR:
            case E_COMPILE_ERROR:
            case E_USER_ERROR:
                return true;
        }
        return false;
    }