From 5a5ff5f54a7cd49509971acbd261d7c60ed3371f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Tue, 28 Dec 2021 23:32:11 +0100 Subject: [PATCH] notification: fix type for id --- src/Bundle/ChillMainBundle/Entity/Notification.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bundle/ChillMainBundle/Entity/Notification.php b/src/Bundle/ChillMainBundle/Entity/Notification.php index 61c1c5926..40fa17a91 100644 --- a/src/Bundle/ChillMainBundle/Entity/Notification.php +++ b/src/Bundle/ChillMainBundle/Entity/Notification.php @@ -51,7 +51,7 @@ class Notification * @ORM\GeneratedValue * @ORM\Column(type="integer") */ - private int $id; + private ?int $id = null; /** * @ORM\Column(type="text")