class Twig_Test_Function

Represents a function template test.

@package twig @author Fabien Potencier <fabien@symfony.com>

Hierarchy

Expanded class hierarchy of Twig_Test_Function

File

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

View source
class Twig_Test_Function implements Twig_TestInterface {
  protected $function;
  public function __construct($function) {
    $this->function = $function;
  }
  public function compile() {
    return $this->function;
  }

}

Members