Added import for storelocations

This commit is contained in:
Jan Böhmer 2023-03-24 22:51:41 +01:00
parent 34aefd32e8
commit 1ca839ab26
3 changed files with 37 additions and 17 deletions

View file

@ -340,11 +340,11 @@ abstract class AbstractStructuralDBElement extends AttachmentContainingDBElement
/**
* Set the comment.
*
* @param string|null $new_comment the new comment
* @param string $new_comment the new comment
*
* @return AbstractStructuralDBElement
*/
public function setComment(?string $new_comment): self
public function setComment(string $new_comment): self
{
$this->comment = $new_comment;