File "SecurityNotAllowedFilterError.php"

Full Path: /home/warrior1/public_html/wp-content/plugins/mailpoet/vendor-prefixed/twig/twig/src/Sandbox/SecurityNotAllowedFilterError.php
File size: 383 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Twig\Sandbox;
if (!defined('ABSPATH')) exit;
final class SecurityNotAllowedFilterError extends SecurityError
{
 private $filterName;
 public function __construct(string $message, string $functionName)
 {
 parent::__construct($message);
 $this->filterName = $functionName;
 }
 public function getFilterName() : string
 {
 return $this->filterName;
 }
}