Skip to content

Commit 77c1080

Browse files
committed
fix merge
1 parent a543896 commit 77c1080

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/Symfony/Bridge/Twig/Node/StopwatchNode.php

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,7 @@ final class StopwatchNode extends Node
2727
{
2828
public function __construct(Node $name, Node $body, AssignNameExpression|LocalVariable $var, int $lineno = 0)
2929
{
30-
if (class_exists(FirstClassTwigCallableReady::class)) {
31-
parent::__construct(['body' => $body, 'name' => $name, 'var' => $var], [], $lineno);
32-
} else {
33-
parent::__construct(['body' => $body, 'name' => $name, 'var' => $var], [], $lineno, $tag);
34-
}
30+
parent::__construct(['body' => $body, 'name' => $name, 'var' => $var], [], $lineno);
3531
}
3632

3733
public function compile(Compiler $compiler): void

0 commit comments

Comments
 (0)