Skip to content

Commit 03884d1

Browse files
committed
Merge branch '4.4' into 5.0
* 4.4: Fix quotes in exception messages Fix quotes in exception messages Fix quotes in exception messages
2 parents 98e879c + 5090474 commit 03884d1

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
@@ -59,7 +59,7 @@ public function __construct(iterable $voters = [], string $strategy = self::STRA
5959
public function decide(TokenInterface $token, array $attributes, $object = null)
6060
{
6161
if (\count($attributes) > 1) {
62-
throw new InvalidArgumentException(sprintf('Passing more than one Security attribute to %s() is not supported.', __METHOD__));
62+
throw new InvalidArgumentException(sprintf('Passing more than one Security attribute to "%s()" is not supported.', __METHOD__));
6363
}
6464

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

0 commit comments

Comments
 (0)