Changeset 1101:7273894e61b8 for inc/libs/twig/Filter/Function.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/Filter/Function.php
r991 r1101 13 13 * Represents a function template filter. 14 14 * 15 * Use Twig_SimpleFilter instead. 16 * 15 17 * @package twig 16 18 * @author Fabien Potencier <fabien@symfony.com> 19 * @deprecated since 1.12 (to be removed in 2.0) 17 20 */ 18 21 class Twig_Filter_Function extends Twig_Filter … … 22 25 public function __construct($function, array $options = array()) 23 26 { 27 $options['callable'] = $function; 28 24 29 parent::__construct($options); 25 30
Note: See TracChangeset
for help on using the changeset viewer.