Skip to content
Snippets Groups Projects
Commit c236d12c authored by Antony Le Courtes's avatar Antony Le Courtes
Browse files

Correction

parent b0a71d39
Branches
Tags
No related merge requests found
...@@ -93,13 +93,13 @@ class ProcessStep ...@@ -93,13 +93,13 @@ class ProcessStep
return $this; return $this;
} }
public function setLabel($label) :ProcessStep { public function setLabel(?string $label): ?string {
$this->label = $label; $this->label = $label;
return $this; return $this;
} }
public function getLabel() :string { public function getLabel(): ?string {
return $this->label; return $this->label;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment