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
Merge pull request to fix incompatibility with Twig v3.21
Redefines ForeachTokenParser::parseAssignmentExpression slightly to account for new protected function of the same name.
Avoid PHP warnings for break & continue
Our previous mechanism of doing a "lookbehind" with twig
lead to array key warnings. Instead we now look ahead, which
is also valid from the perspective of twig, to determine if
more loops are ending than closing, and for break if enough
loops are ending to break out of.