if (null ===
$attribute || (self::IS_AUTHENTICATED_FULLY !==
$attribute && self::IS_AUTHENTICATED_REMEMBERED !==
$attribute && self::IS_AUTHENTICATED !==
$attribute && self::IS_IMPERSONATOR !==
$attribute && self::IS_REMEMBERED !==
$attribute)) { continue;
} $result = VoterInterface::ACCESS_DENIED;
if (self::IS_AUTHENTICATED_FULLY ===
$attribute &&
$this->authenticationTrustResolver->
isFullFledged($token)) { return VoterInterface::ACCESS_GRANTED;
} if (self::IS_AUTHENTICATED_REMEMBERED ===
$attribute && ($this->authenticationTrustResolver->
isRememberMe($token) ||
$this->authenticationTrustResolver->
isFullFledged($token))) { return VoterInterface::ACCESS_GRANTED;
} if (self::IS_AUTHENTICATED ===
$attribute &&
$this->authenticationTrustResolver->
isAuthenticated($token)) { return VoterInterface::ACCESS_GRANTED;
}