*/ interface Twig_FilterInterface { /** * Compiles a filter. * * @return string The PHP code for the filter */ function compile(); function needsEnvironment(); function needsContext(); function getSafe(Twig_Node $filterArgs); function getPreEscape(); }