1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/15508] Replace Twig_NodeInterface with Twig_Node

PHPBB3-15508
This commit is contained in:
François-Xavier de Guillebon
2018-01-16 12:41:05 +01:00
parent 8e664e92ea
commit e75077fc5b
8 changed files with 8 additions and 8 deletions

View File

@@ -16,7 +16,7 @@ namespace phpbb\template\twig\node;
class definenode extends \Twig_Node
{
public function __construct($capture, \Twig_NodeInterface $name, \Twig_NodeInterface $value, $lineno, $tag = null)
public function __construct($capture, \Twig_Node $name, \Twig_Node $value, $lineno, $tag = null)
{
parent::__construct(array('name' => $name, 'value' => $value), array('capture' => $capture, 'safe' => false), $lineno, $tag);
}