/var/www/vhosts/ihelp.ro/httpdocs/vendor/twig/twig/src/Sandbox
NameSizeModeActions
SecurityError.php4090644editdlrm
SecurityNotAllowedFilterError.php7070644editdlrm
SecurityNotAllowedFunctionError.php7190644editdlrm
SecurityNotAllowedMethodError.php8680644editdlrm
SecurityNotAllowedPropertyError.php8840644editdlrm
SecurityNotAllowedTagError.php6790644editdlrm
SecurityPolicy.php40100644editdlrm
SecurityPolicyInterface.php9830644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/twig/twig/src/Sandbox/SecurityNotAllowedPropertyError.php (884B)
*/ final class SecurityNotAllowedPropertyError extends SecurityError { private $className; private $propertyName; public function __construct(string $message, string $className, string $propertyName) { parent::__construct($message); $this->className = $className; $this->propertyName = $propertyName; } public function getClassName(): string { return $this->className; } public function getPropertyName() { return $this->propertyName; } }