vendor/doctrine/orm/src/Exception/MissingIdentifierField.php line 11

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Doctrine\ORM\Exception;
  4. use function sprintf;
  5. final class MissingIdentifierField extends ORMException implements ManagerException
  6. {
  7.     public static function fromFieldAndClass(string $fieldNamestring $className): self
  8.     {
  9.         return new self(sprintf(
  10.             'The identifier %s is missing for a query of %s',
  11.             $fieldName,
  12.             $className
  13.         ));
  14.     }
  15. }