suggest a non-deprecated function replacement

This commit is contained in:
Christian Flothmann 2020-01-23 10:45:54 +01:00
parent a43c222cce
commit 731730fe2f
2 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ class AccessDecisionManager implements AccessDecisionManagerInterface
public function decide(TokenInterface $token, array $attributes, $object = null)
{
if (\count($attributes) > 1) {
@trigger_error(sprintf('Passing more than one Security attribute to %s() is deprecated since Symfony 4.4. Use multiple decide() calls or the expression language (e.g. "has_role(...) or has_role(...)") instead.', __METHOD__), E_USER_DEPRECATED);
@trigger_error(sprintf('Passing more than one Security attribute to %s() is deprecated since Symfony 4.4. Use multiple decide() calls or the expression language (e.g. "is_granted(...) or is_granted(...)") instead.', __METHOD__), E_USER_DEPRECATED);
}
return $this->{$this->strategy}($token, $attributes, $object);

View File

@ -56,7 +56,7 @@ class AuthorizationChecker implements AuthorizationCheckerInterface
if (!\is_array($attributes)) {
$attributes = [$attributes];
} else {
@trigger_error(sprintf('Passing an array of Security attributes to %s() is deprecated since Symfony 4.4. Use multiple isGranted() calls or the expression language (e.g. "has_role(...) or has_role(...)") instead.', __METHOD__), E_USER_DEPRECATED);
@trigger_error(sprintf('Passing an array of Security attributes to %s() is deprecated since Symfony 4.4. Use multiple isGranted() calls or the expression language (e.g. "is_granted(...) or is_granted(...)") instead.', __METHOD__), E_USER_DEPRECATED);
}
return $this->accessDecisionManager->decide($token, $attributes, $subject);