File "NotSupported.php"

Full Path: /home/warrior1/public_html/wp-content/plugins/mailpoet/vendor-prefixed/doctrine/orm/lib/Doctrine/ORM/Exception/NotSupported.php
File size: 533 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
declare (strict_types=1);
namespace MailPoetVendor\Doctrine\ORM\Exception;
if (!defined('ABSPATH')) exit;
final class NotSupported extends ORMException
{
 public static function create() : self
 {
 return new self('This behaviour is (currently) not supported by Doctrine 2');
 }
 public static function createForDbal3() : self
 {
 return new self('Feature was deprecated in doctrine/dbal 2.x and is not supported by installed doctrine/dbal:3.x, please see the doctrine/deprecations logs for new alternative approaches.');
 }
}