File "SecurityNotAllowedTagError.php"

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

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