mirror of
https://github.com/twigphp/Twig.git
synced 2026-08-28 11:06:50 +00:00
Merge branch '2.x' into 3.x
* 2.x: Allow dev versions Allow PHP 8 for extra packages Fix Travis Bump version to 2.13 Fix integration tests Fix PHP 8 compat Install the phpunit-bridge with PHP 7.4 when testing nightly Add PHP 8 / nightly in Travis matrix Drop support for PHP 7.0
This commit is contained in:
@@ -22,7 +22,7 @@ use Twig\Node\Expression\AbstractExpression;
|
||||
*/
|
||||
class IncludeNode extends Node implements NodeOutputInterface
|
||||
{
|
||||
public function __construct(AbstractExpression $expr, AbstractExpression $variables = null, bool $only = false, bool $ignoreMissing = false, int $lineno, string $tag = null)
|
||||
public function __construct(AbstractExpression $expr, ?AbstractExpression $variables, bool $only, bool $ignoreMissing, int $lineno, string $tag = null)
|
||||
{
|
||||
$nodes = ['expr' => $expr];
|
||||
if (null !== $variables) {
|
||||
|
||||
Reference in New Issue
Block a user