MockTreeWalker.php 318B

123456789101112131415161718
  1. <?php
  2. namespace Doctrine\Tests\Mocks;
  3. class MockTreeWalker extends \Doctrine\ORM\Query\TreeWalkerAdapter
  4. {
  5. /**
  6. * Gets an executor that can be used to execute the result of this walker.
  7. *
  8. * @return AbstractExecutor
  9. */
  10. public function getExecutor($AST)
  11. {
  12. return null;
  13. }
  14. }