FunctionCallableInterface.php 479 B

1234567891011121314151617181920212223
  1. <?php
  2. /*
  3. * This file is part of Twig.
  4. *
  5. * (c) 2012 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 callable template function.
  12. *
  13. * Use Twig_SimpleFunction instead.
  14. *
  15. * @author Fabien Potencier <fabien@symfony.com>
  16. * @deprecated since 1.12 (to be removed in 2.0)
  17. */
  18. interface Twig_FunctionCallableInterface
  19. {
  20. public function getCallable();
  21. }