From c04cc69ef81ed26ed55c6d93dda62527d30a3b44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Proch=C3=A1zka?= Date: Wed, 12 Oct 2022 15:10:35 +0200 Subject: [PATCH] Added default value to Record:: --- src/Entity/Record.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Entity/Record.php b/src/Entity/Record.php index 59e1420..30526e5 100644 --- a/src/Entity/Record.php +++ b/src/Entity/Record.php @@ -42,7 +42,7 @@ abstract class Record protected ?string $note; #[ORM\Column(type: 'string', length: 8, nullable: true)] - protected ?string $hash; + protected ?string $hash = null; final public function __construct(string $event, string $message)