From c236d12c310afde43a6eaf0f48c68beb67030185 Mon Sep 17 00:00:00 2001
From: Antony Le Courtes <antony.lecourtes@unicaen.fr>
Date: Thu, 30 Jan 2025 14:55:47 +0100
Subject: [PATCH] Correction

---
 src/Entity/Db/ProcessStep.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/Entity/Db/ProcessStep.php b/src/Entity/Db/ProcessStep.php
index e2640a5..d7aed7a 100644
--- a/src/Entity/Db/ProcessStep.php
+++ b/src/Entity/Db/ProcessStep.php
@@ -93,13 +93,13 @@ class ProcessStep
         return $this;
     }
 
-    public function setLabel($label) :ProcessStep {
+    public function setLabel(?string $label): ?string {
         $this->label = $label;
 
         return $this;
     }
 
-    public function getLabel() :string {
+    public function getLabel(): ?string {
         return $this->label;
     }
 
-- 
GitLab