EasyCorp\Bundle\EasySecurityBundle\Security\Security::isFullyAuthenticated PHP Метод

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

Returns true if the current application user (or the optionally given user) is authenticated because they have introduced their credentials (username and password).
public isFullyAuthenticated ( null $user = null ) : boolean
$user null
Результат boolean
    public function isFullyAuthenticated($user = null)
    {
        $user = $user ?: $this->getUser();
        return $this->isGranted('IS_AUTHENTICATED_FULLY', $user);
    }