PMA\libraries\ErrorHandler::dispPageStart PHP Метод

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

display HTML header
protected dispPageStart ( Error $error = null ) : void
$error Error the error
Результат void
    protected function dispPageStart($error = null)
    {
        Response::getInstance()->disable();
        echo '<html><head><title>';
        if ($error) {
            echo $error->getTitle();
        } else {
            echo 'phpMyAdmin error reporting page';
        }
        echo '</title></head>';
    }