File "UnexpectedTypeException.php"

Full Path: /home/warrior1/public_html/plugins/mailpoet/vendor-prefixed/symfony/validator/Exception/UnexpectedTypeException.php
File size: 345 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Symfony\Component\Validator\Exception;
if (!defined('ABSPATH')) exit;
class UnexpectedTypeException extends ValidatorException
{
 public function __construct($value, string $expectedType)
 {
 parent::__construct(\sprintf('Expected argument of type "%s", "%s" given', $expectedType, \get_debug_type($value)));
 }
}