]>
git.immae.eu Git - github/wallabag/wallabag.git/blob - vendor/twig/twig/lib/Twig/Test/Function.php
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 function template test.
15 * @author Fabien Potencier <fabien@symfony.com>
16 * @deprecated since 1.12 (to be removed in 2.0)
18 class Twig_Test_Function
extends Twig_Test
22 public function __construct($function, array $options = array())
24 $options['callable'] = $function;
26 parent
::__construct($options);
28 $this->function = $function;
31 public function compile()
33 return $this->function;