You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
bypassFinals() missed a target whose declaration is written in another
case.final class gate in namespace App IS App\Gate to PHP — class_exists() says so, and bypassFinals(\App\Gate::class) accepted the
name and installed the target — but the strip compared both halves with === and walked past the very declaration it was installed for. The class
stayed final, with nothing said until for() refused it. Both halves are
compared the way PHP compares them now. Fixes #97.