123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
-
-
-
-
- interface Twig_TemplateInterface
- {
- const ANY_CALL = 'any';
- const ARRAY_CALL = 'array';
- const METHOD_CALL = 'method';
-
-
-
- function render(array $context);
-
-
-
- function display(array $context, array $blocks = array());
-
-
-
- function getEnvironment();
- }
|