1234567891011121314151617181920212223242526272829303132333435 |
- <?php
-
-
-
-
- class Twig_Function_Function extends Twig_Function
- {
- protected $function;
-
- public function __construct($function, array $options = array())
- {
- parent::__construct($options);
-
- $this->function = $function;
- }
-
- public function compile()
- {
- return $this->function;
- }
- }
|