public function Twig_Function_Method::compile

Compiles a function.

Return value

string The PHP code for the function

Overrides Twig_FunctionInterface::compile

File

drupal/core/vendor/twig/twig/lib/Twig/Function/Method.php, line 36

Class

Twig_Function_Method
Represents a method template function.

Code

public function compile() {
  return sprintf('$this->env->getExtension(\'%s\')->%s', $this->extension
    ->getName(), $this->method);
}