Merge remote-tracking branch 'origin/dune-risky' into fix-person-tests

This commit is contained in:
2021-05-26 21:57:09 +02:00
39 changed files with 1289 additions and 425 deletions

View File

@@ -302,13 +302,9 @@ class AccompanyingPeriod
return false;
}
public function setRemark(string $remark): self
public function setRemark(string $remark = null): self
{
if ($remark === null) {
$remark = '';
}
$this->remark = $remark;
$this->remark = (string) $remark;
return $this;
}