public function Twig_Test_Function::__construct

Overrides Twig_Test::__construct

File

drupal/core/vendor/twig/twig/lib/Twig/Test/Function.php, line 22

Class

Twig_Test_Function
Represents a function template test.

Code

public function __construct($function, array $options = array()) {
  $options['callable'] = $function;
  parent::__construct($options);
  $this->function = $function;
}