Changeset 1101:7273894e61b8 for inc/libs/twig/Test/Node.php
- Timestamp:
- 02/15/13 08:35:19 (13 years ago)
- Branch:
- twig
- Children:
- 1106:a4487f3ca4b4, 1147:2e5cb79e4782
- File:
- 
          - 1 edited
 
 - 
          inc/libs/twig/Test/Node.php (modified) (1 diff)
 
Legend:
- Unmodified
- Added
- Removed
- 
        inc/libs/twig/Test/Node.phpr991 r1101 15 15 * @package twig 16 16 * @author Fabien Potencier <fabien@symfony.com> 17 * @deprecated since 1.12 (to be removed in 2.0) 17 18 */ 18 class Twig_Test_Node implements Twig_TestInterface19 class Twig_Test_Node extends Twig_Test 19 20 { 20 21 protected $class; 21 22 22 public function __construct($class )23 public function __construct($class, array $options = array()) 23 24 { 25 parent::__construct($options); 26 24 27 $this->class = $class; 25 28 } 
Note: See TracChangeset
          for help on using the changeset viewer.
      