for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Doctrine\ORM\EntityManager;
use Doctrine\ORM\ManagerException;
final class UnrecognizedIdentifierFields extends \Exception implements ManagerException
{
public static function fromClassAndFieldNames(string $className, array $fieldNames) : self
return new self(
"Unrecognized identifier fields: '" . implode("', '", $fieldNames) . "' " .
"are not present on class '$className'."
);
}