From 969a5f9daeb580c28d1e2d1c3cbecc6ad5e484ce Mon Sep 17 00:00:00 2001 From: Marion Hurteau Date: Sun, 26 Sep 2021 20:13:43 +0200 Subject: [PATCH] Fix typo (#177) --- src/Exception/ObjectGeneratorPersisterExceptionFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Exception/ObjectGeneratorPersisterExceptionFactory.php b/src/Exception/ObjectGeneratorPersisterExceptionFactory.php index ff8ad275..224d7059 100644 --- a/src/Exception/ObjectGeneratorPersisterExceptionFactory.php +++ b/src/Exception/ObjectGeneratorPersisterExceptionFactory.php @@ -25,7 +25,7 @@ public static function createForEntityMissingAssignedIdForField($entity): LogicE { return new LogicException(sprintf('No ID found for the entity "%1$s". If this entity has an auto ID generator, ' . 'this may be due to having it disabled because one instance of the entity had an ID assigned. ' . - 'Either remove this assigned ID to allow the auto ID generator to operate or generate and ID for ' . + 'Either remove this assigned ID to allow the auto ID generator to operate or generate an ID for ' . 'all the "%1$s" entities.', get_class($entity) ));