vendor/twig/twig/src/Node/Expression/AbstractExpression.php line 22

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of Twig.
  4.  *
  5.  * (c) Fabien Potencier
  6.  * (c) Armin Ronacher
  7.  *
  8.  * For the full copyright and license information, please view the LICENSE
  9.  * file that was distributed with this source code.
  10.  */
  11. namespace Twig\Node\Expression;
  12. use Twig\Node\Node;
  13. /**
  14.  * Abstract class for all nodes that represents an expression.
  15.  *
  16.  * @author Fabien Potencier <[email protected]>
  17.  */
  18. abstract class AbstractExpression extends Node
  19. {
  20. }