Skip to content

Commit 7245fa8

Browse files
authored
Add missing semicolon
1 parent ac70593 commit 7245fa8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Twig/Visitor/RemovingNodeVisitor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function setEnabled(bool $bool): void
3636
protected function doEnterNode(Node $node, Environment $env): Node
3737
{
3838
if ($this->enabled && $node instanceof FilterExpression) {
39-
$name = $node->getAttribute('twig_callable')->getName()
39+
$name = $node->getAttribute('twig_callable')->getName();
4040

4141
if ('desc' === $name || 'meaning' === $name) {
4242
return $this->enterNode($node->getNode('node'), $env);

0 commit comments

Comments
 (0)