From c91357d0c750df6c90ac11b1b5de6f8c3873efd0 Mon Sep 17 00:00:00 2001 From: Nils Langner Date: Tue, 25 Oct 2011 14:13:26 +0200 Subject: [PATCH] Moved interfaces --- lib/Twig/Node.php | 2 +- lib/Twig/NodeInterface.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 lib/Twig/Node.php mode change 100644 => 100755 lib/Twig/NodeInterface.php diff --git a/lib/Twig/Node.php b/lib/Twig/Node.php old mode 100644 new mode 100755 index 22e65d4..651ffc4 --- a/lib/Twig/Node.php +++ b/lib/Twig/Node.php @@ -16,7 +16,7 @@ * @package twig * @author Fabien Potencier */ -class Twig_Node implements Twig_NodeInterface, Countable, IteratorAggregate +class Twig_Node implements Twig_NodeInterface { protected $nodes; protected $attributes; diff --git a/lib/Twig/NodeInterface.php b/lib/Twig/NodeInterface.php old mode 100644 new mode 100755 index 165aed4..29a84b0 --- a/lib/Twig/NodeInterface.php +++ b/lib/Twig/NodeInterface.php @@ -15,7 +15,7 @@ * @package twig * @author Fabien Potencier */ -interface Twig_NodeInterface +interface Twig_NodeInterface extends Countable, IteratorAggregate { /** * Compiles the node to PHP. -- 1.7.2.5