Function.php 583B

1234567891011121314151617181920212223242526272829303132
  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 function template test.
  12. *
  13. * @package twig
  14. * @author Fabien Potencier <fabien@symfony.com>
  15. */
  16. class Twig_Test_Function implements Twig_TestInterface
  17. {
  18. protected $function;
  19. public function __construct($function)
  20. {
  21. $this->function = $function;
  22. }
  23. public function compile()
  24. {
  25. return $this->function;
  26. }
  27. }