From bd4338bb2ddedac2257388df69a29ad7b8ee3eaa Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 7 Aug 2023 19:28:51 +0200 Subject: [PATCH] fix getColor return type --- src/core/Entity/Site/Navigation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Entity/Site/Navigation.php b/src/core/Entity/Site/Navigation.php index f25c139..e459b4a 100644 --- a/src/core/Entity/Site/Navigation.php +++ b/src/core/Entity/Site/Navigation.php @@ -248,7 +248,7 @@ class Navigation implements EntityInterface return $this; } - public function getColor(): string + public function getColor(): ?string { return $this->color; }