Neos\Eel\Helper\SecurityHelper::getAccount PHP Метод

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

Get the account of the first authenticated token.
public getAccount ( ) : Account | null
Результат Neos\Flow\Security\Account | null
    public function getAccount()
    {
        if ($this->securityContext->canBeInitialized()) {
            return $this->securityContext->getAccount();
        }
        return null;
    }