Changeset 1101:7273894e61b8 for inc/libs/twig/Function/Method.php
- Timestamp:
- 02/15/13 08:35:19 (13 years ago)
- Branch:
- twig
- Children:
- 1106:a4487f3ca4b4, 1147:2e5cb79e4782
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inc/libs/twig/Function/Method.php
r991 r1101 14 14 * Represents a method template function. 15 15 * 16 * Use Twig_SimpleFunction instead. 17 * 16 18 * @package twig 17 19 * @author Arnaud Le Blanc <arnaud.lb@gmail.com> 20 * @deprecated since 1.12 (to be removed in 2.0) 18 21 */ 19 22 class Twig_Function_Method extends Twig_Function … … 24 27 public function __construct(Twig_ExtensionInterface $extension, $method, array $options = array()) 25 28 { 29 $options['callable'] = array($extension, $method); 30 26 31 parent::__construct($options); 27 32
Note: See TracChangeset
for help on using the changeset viewer.