Skip to content

Commit

Permalink
[TASK] Add missing TODO comments (#417)
Browse files Browse the repository at this point in the history
  • Loading branch information
buchmarv authored Oct 21, 2024
1 parent e94147a commit 3e99aad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Twig/Node/ExampleNode.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ public function compile(Compiler $compiler): void
$compiler->write('$' . $attributeStorageName . ' = [];' . PHP_EOL);
}

// @TODO: drop version check when removing twig < 3.9 support
if (version_compare(Environment::VERSION, '3.9.0', '>=')) {
// twig >= 3.9
$compiler
Expand Down
1 change: 1 addition & 0 deletions src/Twig/Node/ExpandNode.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ public function compile(Compiler $compiler)
$compiler->write('$' . $attributeStorageName . ' = [];' . PHP_EOL);
}

// @TODO: drop version check when removing twig < 3.9 support
if (version_compare(Environment::VERSION, '3.9.0', '>=')) {
// twig >= 3.9
$compiler
Expand Down
1 change: 1 addition & 0 deletions src/Twig/Node/FrameNode.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ public function compile(Compiler $compiler): void
$compiler->write('$' . $attributeStorageName . ' = [];' . PHP_EOL);
}

// @TODO: drop version check when removing twig < 3.9 support
if (version_compare(Environment::VERSION, '3.9.0', '>=')) {
// twig >= 3.9
$compiler
Expand Down

0 comments on commit 3e99aad

Please sign in to comment.