Upgrade Twig library

This commit is contained in:
Michael Foster 2013-08-01 15:20:12 -04:00
parent 22f3a95e0e
commit 0fe5528574
133 changed files with 5080 additions and 1386 deletions

View file

@ -12,14 +12,13 @@
/**
* Interfaces that all security policy classes must implements.
*
* @package twig
* @author Fabien Potencier <fabien@symfony.com>
* @author Fabien Potencier <fabien@symfony.com>
*/
interface Twig_Sandbox_SecurityPolicyInterface
{
function checkSecurity($tags, $filters, $functions);
public function checkSecurity($tags, $filters, $functions);
function checkMethodAllowed($obj, $method);
public function checkMethodAllowed($obj, $method);
function checkPropertyAllowed($obj, $method);
public function checkPropertyAllowed($obj, $method);
}