Skip to content

Commit

Permalink
csfixing
Browse files Browse the repository at this point in the history
  • Loading branch information
rennokki committed Dec 3, 2022
1 parent c7092db commit 8f121fa
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/Acl.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

class Acl
{

/**
* Create a policy from statements.
*
Expand Down
2 changes: 1 addition & 1 deletion src/Concerns/HasPolicies.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function isAllowedTo(string $action, string|Arnable $arn): bool

if (str_contains($action, '*') || str_contains($arn, '*')) {
throw new WildcardNotPermittedException(sprintf(
"Checking %s on %s is not permitted. Wildcards are not allowed.",
'Checking %s on %s is not permitted. Wildcards are not allowed.',
$action,
$arn,
));
Expand Down

0 comments on commit 8f121fa

Please sign in to comment.