Skip to content

Commit

Permalink
Fixed several PHP8 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Apr 29, 2021
1 parent 4c1c935 commit ec9ef50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/Twig/twig/src/Node/IncludeNode.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
*/
class IncludeNode extends Node implements NodeOutputInterface
{
public function __construct(AbstractExpression $expr, AbstractExpression $variables = null, $only = false, $ignoreMissing = false, $lineno, $tag = null)
public function __construct(AbstractExpression $expr, AbstractExpression $variables = null, $only = false, $ignoreMissing = false, $lineno = 0, $tag = null)
{
$nodes = ['expr' => $expr];
if (null !== $variables) {
Expand Down

0 comments on commit ec9ef50

Please sign in to comment.