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