Mercurial > hg > isophonics-drupal-site
annotate vendor/twig/twig/src/Node/NodeOutputInterface.php @ 18:af1871eacc83
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:33:08 +0100 |
parents | 7a779792577d |
children |
rev | line source |
---|---|
Chris@12 | 1 <?php |
Chris@12 | 2 |
Chris@18 | 3 /* |
Chris@18 | 4 * This file is part of Twig. |
Chris@18 | 5 * |
Chris@18 | 6 * (c) Fabien Potencier |
Chris@18 | 7 * |
Chris@18 | 8 * For the full copyright and license information, please view the LICENSE |
Chris@18 | 9 * file that was distributed with this source code. |
Chris@18 | 10 */ |
Chris@18 | 11 |
Chris@12 | 12 namespace Twig\Node; |
Chris@12 | 13 |
Chris@18 | 14 /** |
Chris@18 | 15 * Represents a displayable node in the AST. |
Chris@18 | 16 * |
Chris@18 | 17 * @author Fabien Potencier <fabien@symfony.com> |
Chris@18 | 18 */ |
Chris@18 | 19 interface NodeOutputInterface |
Chris@18 | 20 { |
Chris@18 | 21 } |
Chris@12 | 22 |
Chris@18 | 23 class_alias('Twig\Node\NodeOutputInterface', 'Twig_NodeOutputInterface'); |