Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

GrammarInterface.php 384B

123456789101112131415161718
  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. interface Twig_Extensions_GrammarInterface
  11. {
  12. public function setParser(Twig_Parser $parser);
  13. public function parse(Twig_Token $token);
  14. public function getName();
  15. }