File "UnrecognizedIdentifierFields.php"

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

<?php
declare (strict_types=1);
namespace MailPoetVendor\Doctrine\ORM\Exception;
if (!defined('ABSPATH')) exit;
use function implode;
use function sprintf;
final class UnrecognizedIdentifierFields extends ORMException implements ManagerException
{
 public static function fromClassAndFieldNames(string $className, array $fieldNames) : self
 {
 return new self(sprintf('Unrecognized identifier fields: "%s" are not present on class "%s".', implode("', '", $fieldNames), $className));
 }
}