Moved interfaces

This commit is contained in:
Nils Langner
2011-10-25 14:13:26 +02:00
parent f6961d558d
commit c91357d0c7
2 changed files with 2 additions and 2 deletions
Regular → Executable
+1 -1
View File
@@ -16,7 +16,7 @@
* @package twig
* @author Fabien Potencier <fabien@symfony.com>
*/
class Twig_Node implements Twig_NodeInterface, Countable, IteratorAggregate
class Twig_Node implements Twig_NodeInterface
{
protected $nodes;
protected $attributes;
Regular → Executable
+1 -1
View File
@@ -15,7 +15,7 @@
* @package twig
* @author Fabien Potencier <fabien@symfony.com>
*/
interface Twig_NodeInterface
interface Twig_NodeInterface extends Countable, IteratorAggregate
{
/**
* Compiles the node to PHP.