File "EnvParameterException.php"

Full Path: /home/warrior1/public_html/plugins/mailpoet/vendor-prefixed/symfony/dependency-injection/Exception/EnvParameterException.php
File size: 431 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Symfony\Component\DependencyInjection\Exception;
if (!defined('ABSPATH')) exit;
class EnvParameterException extends InvalidArgumentException
{
 public function __construct(array $envs, \Throwable $previous = null, string $message = 'Incompatible use of dynamic environment variables "%s" found in parameters.')
 {
 parent::__construct(\sprintf($message, \implode('", "', $envs)), 0, $previous);
 }
}