From 28fa3782ebad68a870287b9c3fc749e7ac8565e0 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 10 Sep 2020 20:40:12 +0200 Subject: [PATCH] fix typehint --- Models/Audit.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Models/Audit.php b/Models/Audit.php index f442e22..a5eb64f 100755 --- a/Models/Audit.php +++ b/Models/Audit.php @@ -270,11 +270,11 @@ class Audit /** * Get created at. * - * @return \DateTime + * @return \DateTimeImmutable * * @since 1.0.0 */ - public function getCreatedAt() : \DateTimeInterface + public function getCreatedAt() : \DateTimeImmutable { return $this->createdAt; }