Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: [Authorizable Trait] move $matrix outside foreach loop #1178

Merged
merged 1 commit into from
Aug 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/Authorization/Traits/Authorizable.php
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,9 @@ public function can(string ...$permissions): bool
// Check the groups the user belongs to
$this->populateGroups();

// Get the group matrix
$matrix = setting('AuthGroups.matrix');

foreach ($permissions as $permission) {
// Permission must contain a scope and action
if (strpos($permission, '.') === false) {
Expand All @@ -270,8 +273,6 @@ public function can(string ...$permissions): bool
return false;
}

$matrix = setting('AuthGroups.matrix');

foreach ($this->groupCache as $group) {
// Check exact match
if (isset($matrix[$group]) && in_array($permission, $matrix[$group], true)) {
Expand Down
Loading