2011-10-05 04:22:53 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of Twig.
|
|
|
|
*
|
2019-02-26 00:11:12 +00:00
|
|
|
* (c) Fabien Potencier
|
2011-10-05 04:22:53 +00:00
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents a displayable node in the AST.
|
|
|
|
*
|
2013-08-01 19:20:12 +00:00
|
|
|
* @author Fabien Potencier <fabien@symfony.com>
|
2011-10-05 04:22:53 +00:00
|
|
|
*/
|
|
|
|
interface Twig_NodeOutputInterface
|
|
|
|
{
|
|
|
|
}
|
2019-02-26 00:11:12 +00:00
|
|
|
|
|
|
|
class_alias('Twig_NodeOutputInterface', 'Twig\Node\NodeOutputInterface', false);
|