/var/www/vhosts/ihelp.ro/httpdocs/vendor/twig/twig/src/Sandbox
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/twig/twig/src/Sandbox/SecurityPolicyInterface.php (983B)
*/
interface SecurityPolicyInterface
{
/**
* @param string[] $tags
* @param string[] $filters
* @param string[] $functions
*
* @throws SecurityError
*/
public function checkSecurity($tags, $filters, $functions): void;
/**
* @param object $obj
* @param string $method
*
* @throws SecurityNotAllowedMethodError
*/
public function checkMethodAllowed($obj, $method): void;
/**
* @param object $obj
* @param string $property
*
* @throws SecurityNotAllowedPropertyError
*/
public function checkPropertyAllowed($obj, $property): void;
}