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

[ticket/16382] Update Twig_Environment

PHPBB3-16382
This commit is contained in:
mrgoldy
2020-02-27 16:55:54 +01:00
parent 8a040f3fbc
commit 75c25556aa
7 changed files with 13 additions and 12 deletions

View File

@@ -15,7 +15,7 @@ namespace phpbb\template\twig;
use phpbb\template\assets_bag;
class environment extends \Twig_Environment
class environment extends \Twig\Environment
{
/** @var \phpbb\config\config */
protected $phpbb_config;
@@ -169,7 +169,7 @@ class environment extends \Twig_Environment
* Set the namespace look up order to load templates from
*
* @param array $namespace
* @return \Twig_Environment
* @return \Twig\Environment
*/
public function setNamespaceLookUpOrder($namespace)
{

View File

@@ -134,7 +134,7 @@ class extension extends \Twig_Extension
/**
* Grabs a subset of a loop
*
* @param \Twig_Environment $env A Twig_Environment instance
* @param \Twig\Environment $env A Twig\Environment instance
* @param mixed $item A variable
* @param integer $start Start of the subset
* @param integer $end End of the subset
@@ -142,7 +142,7 @@ class extension extends \Twig_Extension
*
* @return mixed The sliced variable
*/
public function loop_subset(\Twig_Environment $env, $item, $start, $end = null, $preserveKeys = false)
public function loop_subset(\Twig\Environment $env, $item, $start, $end = null, $preserveKeys = false)
{
// We do almost the same thing as Twig's slice (array_slice), except when $end is positive
if ($end >= 1)

View File

@@ -21,7 +21,7 @@ class event extends \Twig\Node\Node
*/
protected $listener_directory = 'event/';
/** @var \Twig_Environment */
/** @var \Twig\Environment */
protected $environment;
public function __construct(\Twig\Node\Expression\AbstractExpression $expr, \phpbb\template\twig\environment $environment, $lineno, $tag = null)

View File

@@ -16,7 +16,7 @@ namespace phpbb\template\twig\node;
class includephp extends \Twig\Node\Node
{
/** @var \Twig_Environment */
/** @var \Twig\Environment */
protected $environment;
public function __construct(\Twig\Node\Expression\AbstractExpression $expr, \phpbb\template\twig\environment $environment, $lineno, $ignoreMissing = false, $tag = null)

View File

@@ -15,7 +15,7 @@ namespace phpbb\template\twig\node;
class php extends \Twig\Node\Node
{
/** @var \Twig_Environment */
/** @var \Twig\Environment */
protected $environment;
public function __construct(\Twig\Node\TextNode $text, \phpbb\template\twig\environment $environment, $lineno, $tag = null)

View File

@@ -69,7 +69,7 @@ class twig extends \phpbb\template\base
/**
* Twig Environment
*
* @var \Twig_Environment
* @var \Twig\Environment
*/
protected $twig;