1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 06:54:05 +00:00

fix callback result comparison

This commit is contained in:
David Vařílek 2024-08-22 20:30:13 +02:00
parent f5e0959136
commit fe3b8525b2

View file

@ -158,7 +158,7 @@ class Tenancy
$this->initialize($tenant); $this->initialize($tenant);
if (! $callback($tenant)) { if ($callback($tenant) === false) {
break; break;
}; };
} }