File "SecurityNotAllowedFunctionError.php"

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

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