Skip to content

Commit 3d2d44b

Browse files
committed
fix scopes
1 parent 874a000 commit 3d2d44b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Traits/Authorizable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function can(string $scope): bool
1919
$scopes = ($this->scopes) ? $this->scopes : [];
2020

2121
// Wildcard present
22-
if (in_array('*', $this->scopes, true)) {
22+
if (in_array('*', $scopes, true)) {
2323
return true;
2424
}
2525

0 commit comments

Comments
 (0)