Node.php 609B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. /*
  3. * This file is part of Twig.
  4. *
  5. * (c) 2010 Fabien Potencier
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. /**
  11. * Represents a template test as a Node.
  12. *
  13. * @package twig
  14. * @author Fabien Potencier <fabien@symfony.com>
  15. */
  16. class Twig_Test_Node implements Twig_TestInterface
  17. {
  18. protected $class;
  19. public function __construct($class)
  20. {
  21. $this->class = $class;
  22. }
  23. public function getClass()
  24. {
  25. return $this->class;
  26. }
  27. public function compile()
  28. {
  29. }
  30. }