File "UnexpectedValueException.php"

Full Path: /home/warrior1/public_html/wp-content-20241001222009/plugins/mailpoet/vendor-prefixed/symfony/validator/Exception/UnexpectedValueException.php
File size: 419 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Symfony\Component\Validator\Exception;
if (!defined('ABSPATH')) exit;
class UnexpectedValueException extends UnexpectedTypeException
{
 private $expectedType;
 public function __construct($value, string $expectedType)
 {
 parent::__construct($value, $expectedType);
 $this->expectedType = $expectedType;
 }
 public function getExpectedType() : string
 {
 return $this->expectedType;
 }
}