From d0f8d0f2bb7d192ff26feef5593baebef7c3150b Mon Sep 17 00:00:00 2001 From: John Oleksowicz Date: Tue, 13 Sep 2022 11:56:35 -0500 Subject: [PATCH] Use native type hint [MAILPOET-4463] --- mailpoet/lib/Automation/Engine/Data/WorkflowRunLog.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/mailpoet/lib/Automation/Engine/Data/WorkflowRunLog.php b/mailpoet/lib/Automation/Engine/Data/WorkflowRunLog.php index 7283226923..dfb3a6c4cb 100644 --- a/mailpoet/lib/Automation/Engine/Data/WorkflowRunLog.php +++ b/mailpoet/lib/Automation/Engine/Data/WorkflowRunLog.php @@ -91,10 +91,7 @@ class WorkflowRunLog { return $this->data; } - /** - * @return DateTimeImmutable|null - */ - public function getCompletedAt() { + public function getCompletedAt(): ?DateTimeImmutable { return $this->completedAt; }