芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/giga.mgaplay.com.br/vendor/twig/twig/src/Sandbox/SecurityPolicyInterface.php
*/ 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; }