-
Notifications
You must be signed in to change notification settings - Fork 166
Twig v1.26.0 breaks auth_user() #283
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
@barryvdh Could we get this fix tagged with a release? Until it is, the issue will just keep getting re-reported when people do their composer updates. |
Twig should probably tag a new release, which broke it in the first place.. |
Sorry Barry, didn't see that they've also made a fix for the issue. Hopefully they'll accept the pull request and tag it shortly. |
Twig v1.26.1 has been released with the nessesary fix 🎉 |
Is this already fixed? I am now getting
after a composer update to twig/twig v1.26.1 and symfony/twig-bridge v3.1.5. |
I also encountered that, not sure why though |
I recently updated from Twig
v1.24.2
to Twigv1.26.0
. Now, everytime I made a call toauth_user()
in my Twig template, I am gettingDigging, v1.26.0 introduced a
reflectCallable
method which does not exist in v1.24.2.I tried calling
new ReflectionMethod($callable[0], $callable[1]);
alone and it produces the same error. However,call_user_func_array($callable);
works.I don't know where to submit this issue. Any suggestions on resolving this?
The text was updated successfully, but these errors were encountered: