Prado\Security\TAuthManager::doAuthentication PHP Метод

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

This is the event handler attached to application's Authentication event. Do not call this method directly.
public doAuthentication ( $sender, $param )
    public function doAuthentication($sender, $param)
    {
        $this->onAuthenticate($param);
        $service = $this->getService();
        if ($service instanceof TPageService && $service->getRequestedPagePath() === $this->getLoginPage()) {
            $this->_skipAuthorization = true;
        }
    }