PMA\libraries\plugins\auth\AuthenticationConfig::auth PHP Метод

auth() публичный Метод

Displays authentication form
public auth ( ) : boolean
Результат boolean always true
    public function auth()
    {
        $response = PMA\libraries\Response::getInstance();
        if ($response->isAjax()) {
            $response->setRequestStatus(false);
            // reload_flag removes the token parameter from the URL and reloads
            $response->addJSON('reload_flag', '1');
            if (defined('TESTSUITE')) {
                return true;
            } else {
                exit;
            }
        }
        return true;
    }