Fix opcache preload warning for unlinked anonymous class

This commit is contained in:
Ondřej Machulda
2026-01-05 19:11:58 +01:00
parent 6e38bec2ee
commit 86997d1bef
+4
View File
@@ -27,6 +27,10 @@ use Twig\Node\Expression\AbstractExpression;
use Twig\NodeVisitor\NodeVisitorInterface;
use Twig\TokenParser\TokenParserInterface;
// Help opcache.preload discover always-needed symbols
// @see https://github.com/php/php-src/issues/10131
class_exists(BinaryOperatorExpressionParser::class);
/**
* @author Fabien Potencier <fabien@symfony.com>
*