- Issue created by @pierostz
- First commit to issue fork.
- πΊπΈUnited States fathershawn New York
fathershawn β changed the visibility of the branch 3485198-tweak-twig-dot to hidden.
- πΊπΈUnited States fathershawn New York
I'll do some testing. I would have expected a type exception with the given Twig expression. The function signature for that method is:
public function pushUrl(bool|Url $value) {}
I'm not clear why Twig is interpreting your string as a
Url
object. - πΊπΈUnited States fathershawn New York
I'm still not sure what Twig was calling, but there is a syntax error in your code. The proper syntax for the method to generate a push url attribute is
.pushUrl(true)
or.pushUrl(someUrlObject)