Skip to content

v0.7.1

Choose a tag to compare

@github-actions github-actions released this 04 Sep 08:41
· 22 commits to master since this release
7174769
  • 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.