When using double trailing slashes \\ with constants, dwoo must output a single one \.
However this is not what's happening!
Example:
{%Symfony\\Component\\HttpKernel\\Kernel::VERSION}
need to output:
<?php echo Symfony\Component\HttpKernel\Kernel::VERSION;?>
but output:
<?php echo Symfony\\Component\\HttpKernel\\Kernel::VERSION;?>
When using double trailing slashes
\\
with constants, dwoo must output a single one\
.However this is not what's happening!
Example:
{%Symfony\\Component\\HttpKernel\\Kernel::VERSION}
need to output:<?php echo Symfony\Component\HttpKernel\Kernel::VERSION;?>
but output:<?php echo Symfony\\Component\\HttpKernel\\Kernel::VERSION;?>