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;
} if (self::IS_REMEMBERED ===
$attribute &&
$this->authenticationTrustResolver->
isRememberMe($token)) { return VoterInterface::ACCESS_GRANTED;
}