Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / doctrine / orm / tests / Doctrine / Tests / Mocks / MockTreeWalker.php
1 <?php
2
3 namespace Doctrine\Tests\Mocks;
4
5 class MockTreeWalker extends \Doctrine\ORM\Query\TreeWalkerAdapter
6 {
7     /**
8      * Gets an executor that can be used to execute the result of this walker.
9      *
10      * @return AbstractExecutor
11      */
12     public function getExecutor($AST)
13     {
14         return null;
15     }
16 }
17