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
As found by PHPStan:
Line 869 in src/Twig/TwigExtension.php
Right side of && is always true.
Which makes sense as var_dump(strtok(" ", " ")) -> bool(false) so we
either get a false or would get the string on: var_dump(strtok(" 1", " ") -> str("1")
0 commit comments