From 042a4e411f04096a196f2e58da2a969acd1b36b0 Mon Sep 17 00:00:00 2001 From: zYne Date: Fri, 15 Jun 2007 10:33:15 +0000 Subject: [PATCH] fixes #346 --- lib/Doctrine/Node/AdjacencyList.php | 2 +- lib/Doctrine/Node/AdjacencyList/LevelOrderIterator.php | 2 +- lib/Doctrine/Node/AdjacencyList/PostOrderIterator.php | 2 +- lib/Doctrine/Node/AdjacencyList/PreOrderIterator.php | 2 +- lib/Doctrine/Node/MaterializedPath.php | 2 +- lib/Doctrine/Tree/AdjacencyList.php | 2 +- lib/Doctrine/Tree/MaterializedPath.php | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/Doctrine/Node/AdjacencyList.php b/lib/Doctrine/Node/AdjacencyList.php index 8dc1138a6..7a6abf65f 100644 --- a/lib/Doctrine/Node/AdjacencyList.php +++ b/lib/Doctrine/Node/AdjacencyList.php @@ -29,6 +29,6 @@ * @version $Revision$ * @author Joe Simms */ -class Doctrine_Node_AdjacencyList extends Doctrine_Node implements Doctrine_Node_Interface +abstract class Doctrine_Node_AdjacencyList extends Doctrine_Node implements Doctrine_Node_Interface {} diff --git a/lib/Doctrine/Node/AdjacencyList/LevelOrderIterator.php b/lib/Doctrine/Node/AdjacencyList/LevelOrderIterator.php index cb0521775..eff1d5db2 100644 --- a/lib/Doctrine/Node/AdjacencyList/LevelOrderIterator.php +++ b/lib/Doctrine/Node/AdjacencyList/LevelOrderIterator.php @@ -29,5 +29,5 @@ * @version $Revision$ * @author Joe Simms */ -class Doctrine_Node_AdjacencyList_LevelOrderIterator implements Iterator +abstract class Doctrine_Node_AdjacencyList_LevelOrderIterator implements Iterator {} diff --git a/lib/Doctrine/Node/AdjacencyList/PostOrderIterator.php b/lib/Doctrine/Node/AdjacencyList/PostOrderIterator.php index 6da50ea39..500979e13 100644 --- a/lib/Doctrine/Node/AdjacencyList/PostOrderIterator.php +++ b/lib/Doctrine/Node/AdjacencyList/PostOrderIterator.php @@ -29,5 +29,5 @@ * @version $Revision$ * @author Joe Simms */ -class Doctrine_Node_AdjacencyList_PostOrderIterator implements Iterator +abstract class Doctrine_Node_AdjacencyList_PostOrderIterator implements Iterator {} diff --git a/lib/Doctrine/Node/AdjacencyList/PreOrderIterator.php b/lib/Doctrine/Node/AdjacencyList/PreOrderIterator.php index 4bf3bd865..baf33964e 100644 --- a/lib/Doctrine/Node/AdjacencyList/PreOrderIterator.php +++ b/lib/Doctrine/Node/AdjacencyList/PreOrderIterator.php @@ -29,5 +29,5 @@ * @version $Revision$ * @author Joe Simms */ -class Doctrine_Node_AdjacencyList_PreOrderIterator implements Iterator +abstract class Doctrine_Node_AdjacencyList_PreOrderIterator implements Iterator {} diff --git a/lib/Doctrine/Node/MaterializedPath.php b/lib/Doctrine/Node/MaterializedPath.php index 1887bf37d..57862088c 100644 --- a/lib/Doctrine/Node/MaterializedPath.php +++ b/lib/Doctrine/Node/MaterializedPath.php @@ -29,6 +29,6 @@ * @version $Revision$ * @author Joe Simms */ -class Doctrine_Node_MaterializedPath extends Doctrine_Node implements Doctrine_Node_Interface +abstract class Doctrine_Node_MaterializedPath extends Doctrine_Node implements Doctrine_Node_Interface {} diff --git a/lib/Doctrine/Tree/AdjacencyList.php b/lib/Doctrine/Tree/AdjacencyList.php index 9ddefbe71..25957b004 100644 --- a/lib/Doctrine/Tree/AdjacencyList.php +++ b/lib/Doctrine/Tree/AdjacencyList.php @@ -29,5 +29,5 @@ * @version $Revision$ * @author Joe Simms */ -class Doctrine_Tree_AdjacencyList extends Doctrine_Tree implements Doctrine_Tree_Interface +abstract class Doctrine_Tree_AdjacencyList extends Doctrine_Tree implements Doctrine_Tree_Interface {} diff --git a/lib/Doctrine/Tree/MaterializedPath.php b/lib/Doctrine/Tree/MaterializedPath.php index dd0609b16..79c661471 100644 --- a/lib/Doctrine/Tree/MaterializedPath.php +++ b/lib/Doctrine/Tree/MaterializedPath.php @@ -29,5 +29,5 @@ * @version $Revision$ * @author Joe Simms */ -class Doctrine_Tree_MaterializedPath extends Doctrine_Tree implements Doctrine_Tree_Interface +abstract class Doctrine_Tree_MaterializedPath extends Doctrine_Tree implements Doctrine_Tree_Interface {}