Файл: upload/core/vendor/twig/twig/src/Node/Expression/EmptyExpression.php
Строк: 36
<?php
/*
* This file is part of Twig.
*
* (c) Fabien Potencier
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace TwigNodeExpression;
use TwigCompiler;
/**
* Represents an empty slot in an array.
*
* This is currently only used in destructuring contexts.
*
* @internal
*/
final class EmptyExpression extends AbstractExpression
{
public function __construct(int $lineno)
{
parent::__construct([], [], $lineno);
}
public function compile(Compiler $compiler): void
{
}
}