X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fsymfony%2Fexpression-language%2FTests%2FFixtures%2FTestProvider.php;fp=vendor%2Fsymfony%2Fexpression-language%2FTests%2FFixtures%2FTestProvider.php;h=0000000000000000000000000000000000000000;hp=8b7d81910ce443aea155b5b7fae589167bcfd17a;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hpb=aea91e65e895364e460983b890e295aa5d5540a5 diff --git a/vendor/symfony/expression-language/Tests/Fixtures/TestProvider.php b/vendor/symfony/expression-language/Tests/Fixtures/TestProvider.php deleted file mode 100644 index 8b7d81910..000000000 --- a/vendor/symfony/expression-language/Tests/Fixtures/TestProvider.php +++ /dev/null @@ -1,29 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Symfony\Component\ExpressionLanguage\Tests\Fixtures; - -use Symfony\Component\ExpressionLanguage\ExpressionFunction; -use Symfony\Component\ExpressionLanguage\ExpressionFunctionProviderInterface; - -class TestProvider implements ExpressionFunctionProviderInterface -{ - public function getFunctions() - { - return array( - new ExpressionFunction('identity', function ($input) { - return $input; - }, function (array $values, $input) { - return $input; - }), - ); - } -}