*/ interface TwigFunction { /** * Returns the name of the filter's Twig function. * * @return string A valid function name */ static function getTwigFunctionName(); /** * Handles a call to the filter from Twig. * * @param string $input A single input string * @param array $options An array of filter options * * @return string The created asset's target URL */ static function callFromTwig($input, array $options = array()); }