]>
git.immae.eu Git - github/wallabag/wallabag.git/blob - vendor/twig/twig/lib/Twig/Test/Method.php
17c6c041d6255b253c5516f16a2fa31aacea6c3f
4 * This file is part of Twig.
6 * (c) 2010 Fabien Potencier
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
13 * Represents a method template test.
15 * @author Fabien Potencier <fabien@symfony.com>
16 * @deprecated since 1.12 (to be removed in 2.0)
18 class Twig_Test_Method
extends Twig_Test
23 public function __construct(Twig_ExtensionInterface
$extension, $method, array $options = array())
25 $options['callable'] = array($extension, $method);
27 parent
::__construct($options);
29 $this->extension
= $extension;
30 $this->method
= $method;
33 public function compile()
35 return sprintf('$this->env->getExtension(\'%s\')->%s', $this->extension
->getName(), $this->method
);