Rajout de doctrine/orm
[zf2.biz/application_blanche.git] / vendor / doctrine / orm / tests / Doctrine / Tests / Mocks / MockTreeWalker.php
diff --git a/vendor/doctrine/orm/tests/Doctrine/Tests/Mocks/MockTreeWalker.php b/vendor/doctrine/orm/tests/Doctrine/Tests/Mocks/MockTreeWalker.php
new file mode 100644 (file)
index 0000000..b92b99f
--- /dev/null
@@ -0,0 +1,17 @@
+<?php
+
+namespace Doctrine\Tests\Mocks;
+
+class MockTreeWalker extends \Doctrine\ORM\Query\TreeWalkerAdapter
+{
+    /**
+     * Gets an executor that can be used to execute the result of this walker.
+     *
+     * @return AbstractExecutor
+     */
+    public function getExecutor($AST)
+    {
+        return null;
+    }
+}
+