Skip to content

Commit ed2fc17

Browse files
committed
Merge branch '4.4' into 5.4
* 4.4: Fix CS
2 parents 4763e6a + e9a969b commit ed2fc17

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Authorization/AccessDecisionManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public function __construct(iterable $voters = [], /* AccessDecisionStrategyInte
8989
*
9090
* {@inheritdoc}
9191
*/
92-
public function decide(TokenInterface $token, array $attributes, $object = null/*, bool $allowMultipleAttributes = false*/)
92+
public function decide(TokenInterface $token, array $attributes, $object = null/* , bool $allowMultipleAttributes = false */)
9393
{
9494
$allowMultipleAttributes = 3 < \func_num_args() && func_get_arg(3);
9595

Authorization/TraceableAccessDecisionManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public function __construct(AccessDecisionManagerInterface $manager)
5151
*
5252
* @param bool $allowMultipleAttributes Whether to allow passing multiple values to the $attributes array
5353
*/
54-
public function decide(TokenInterface $token, array $attributes, $object = null/*, bool $allowMultipleAttributes = false*/): bool
54+
public function decide(TokenInterface $token, array $attributes, $object = null/* , bool $allowMultipleAttributes = false */): bool
5555
{
5656
$currentDecisionLog = [
5757
'attributes' => $attributes,

0 commit comments

Comments
 (0)