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

Use === instead of Str::is()

This commit is contained in:
lukinovec 2025-07-02 17:48:26 +02:00
parent 64048d2950
commit 0feae8fe23

View file

@ -379,7 +379,7 @@ class TableRLSManager implements RLSPolicyManager
}
// Explicit scoping
if (Str::is($comment, 'rls')) {
if ($comment === 'rls') {
return false;
}