Skip to content

Commit f74473e

Browse files
committed
Merge branch '5.0'
* 5.0: Fix quotes in exception messages Fix quotes in exception messages Fix quotes in exception messages Fix quotes in exception messages Fix quotes in exception messages
2 parents 46c8dc3 + 03884d1 commit f74473e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Authorization/AccessDecisionManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function __construct(iterable $voters = [], string $strategy = self::STRA
6060
public function decide(TokenInterface $token, array $attributes, $object = null)
6161
{
6262
if (\count($attributes) > 1) {
63-
throw new InvalidArgumentException(sprintf('Passing more than one Security attribute to %s() is not supported.', __METHOD__));
63+
throw new InvalidArgumentException(sprintf('Passing more than one Security attribute to "%s()" is not supported.', __METHOD__));
6464
}
6565

6666
return $this->{$this->strategy}($token, $attributes, $object);

0 commit comments

Comments
 (0)