vendor/symfony/src/Symfony/Bundle/DoctrineBundle/Tests/DependencyInjection/TestNumericFunction.php
equal
deleted
inserted
replaced
|
1 <?php |
|
2 |
|
3 /* |
|
4 * This file is part of the Symfony package. |
|
5 * |
|
6 * (c) Fabien Potencier <fabien@symfony.com> |
|
7 * |
|
8 * For the full copyright and license information, please view the LICENSE |
|
9 * file that was distributed with this source code. |
|
10 */ |
|
11 |
|
12 namespace Symfony\Bundle\DoctrineBundle\Tests\DependencyInjection; |
|
13 |
|
14 use Doctrine\ORM\Query\AST\Functions\FunctionNode; |
|
15 use Doctrine\ORM\Query\SqlWalker; |
|
16 use Doctrine\ORM\Query\Parser; |
|
17 |
|
18 class TestStringFunction extends FunctionNode |
|
19 { |
|
20 public function getSql(SqlWalker $sqlWalker) |
|
21 { |
|
22 return ''; |
|
23 } |
|
24 |
|
25 public function parse(Parser $parser) |
|
26 { |
|
27 return ''; |
|
28 } |
|
29 } |