1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
-
-
-
-
- interface Twig_FunctionInterface
- {
-
-
- function compile();
-
- function needsEnvironment();
-
- function needsContext();
-
- function getSafe(Twig_Node $filterArgs);
-
- function setArguments($arguments);
-
- function getArguments();
- }
|