* * @deprecated since 1.12 (to be removed in 2.0) */ class Twig_Test_Function extends Twig_Test { protected $function; public function __construct($function, array $options = []) { $options['callable'] = $function; parent::__construct($options); $this->function = $function; } public function compile() { return $this->function; } }