Changeset 1101:7273894e61b8 for inc/libs/twig/Filter/Method.php
- Timestamp:
- 02/15/13 08:35:19 (13 years ago)
- Branch:
- twig
- Children:
- 1106:a4487f3ca4b4, 1147:2e5cb79e4782
- File:
- 
          - 1 edited
 
 - 
          inc/libs/twig/Filter/Method.php (modified) (2 diffs)
 
Legend:
- Unmodified
- Added
- Removed
- 
        inc/libs/twig/Filter/Method.phpr991 r1101 13 13 * Represents a method 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_Method extends Twig_Filter … … 23 26 public function __construct(Twig_ExtensionInterface $extension, $method, array $options = array()) 24 27 { 28 $options['callable'] = array($extension, $method); 29 25 30 parent::__construct($options); 26 31 
Note: See TracChangeset
          for help on using the changeset viewer.
      