1
0
mirror of synced 2025-02-25 16:33:21 +03:00
2011-12-19 22:56:19 +01:00

18 lines
317 B
PHP

<?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;
}
}