MockTreeWalker.php 318 Bytes
Newer Older
romanb's avatar
romanb committed
1 2 3 4 5 6
<?php

namespace Doctrine\Tests\Mocks;

class MockTreeWalker extends \Doctrine\ORM\Query\TreeWalkerAdapter
{
7 8 9 10 11 12 13 14 15
    /**
     * Gets an executor that can be used to execute the result of this walker.
     * 
     * @return AbstractExecutor
     */
    public function getExecutor($AST)
    {
        return null;
    }
romanb's avatar
romanb committed
16 17
}