1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-19 06:51:33 +02:00

[ticket/16382] Update remaining Twig_ references

PHPBB3-16382
This commit is contained in:
mrgoldy
2020-02-27 17:15:31 +01:00
parent 75c25556aa
commit 49845c1155
19 changed files with 56 additions and 56 deletions

View File

@@ -24,7 +24,7 @@ class definenode extends \Twig\Node\Node
/**
* Compiles the node to PHP.
*
* @param \Twig\Compiler A Twig_Compiler instance
* @param \Twig\Compiler A Twig\Compiler instance
*/
public function compile(\Twig\Compiler $compiler)
{
@@ -37,7 +37,7 @@ class definenode extends \Twig\Node\Node
->subcompile($this->getNode('value'))
;
$compiler->write("\$value = ('' === \$value = ob_get_clean()) ? '' : new \Twig_Markup(\$value, \$this->env->getCharset());\n");
$compiler->write("\$value = ('' === \$value = ob_get_clean()) ? '' : new \Twig\Markup(\$value, \$this->env->getCharset());\n");
}
else
{