public function Twig_Test_Method::__construct

Overrides Twig_Test::__construct

File

drupal/core/vendor/twig/twig/lib/Twig/Test/Method.php, line 23

Class

Twig_Test_Method
Represents a method template test.

Code

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