Skip to content

Commit

Permalink
Update MakeQueueTenantAwareAction.php
Browse files Browse the repository at this point in the history
  • Loading branch information
masterix21 authored Oct 26, 2021
1 parent 0b132bf commit dd13fa4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Actions/MakeQueueTenantAwareAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@ protected function isTenantAware(object $queueable): bool
return false;
}

if (in_array($reflection->name, config('multitenancy.tenant_aware_jobs'), true)) {
if (in_array($reflection->name, config('multitenancy.tenant_aware_jobs'))) {
return true;
}

if (in_array($reflection->name, config('multitenancy.not_tenant_aware_jobs'), true)) {
if (in_array($reflection->name, config('multitenancy.not_tenant_aware_jobs'))) {
return false;
}

Expand Down

0 comments on commit dd13fa4

Please sign in to comment.