Use native type hint

[MAILPOET-4463]
This commit is contained in:
John Oleksowicz
2022-09-13 11:56:35 -05:00
committed by Jan Jakeš
parent e769273c8d
commit d0f8d0f2bb

View File

@ -91,10 +91,7 @@ class WorkflowRunLog {
return $this->data;
}
/**
* @return DateTimeImmutable|null
*/
public function getCompletedAt() {
public function getCompletedAt(): ?DateTimeImmutable {
return $this->completedAt;
}