From 233564502f7650f8bf27627404101438f0463635 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 17 Aug 2019 14:14:51 +0200 Subject: [PATCH] fix after change to php 7.4 --- Models/Project.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Models/Project.php b/Models/Project.php index 938f5bb..8f8b479 100644 --- a/Models/Project.php +++ b/Models/Project.php @@ -58,7 +58,7 @@ class Project * @var null|\DateTime * @since 1.0.0 */ - private $createdAt = null; + private ?\DateTime $createdAt = null; /** * Created by. @@ -253,7 +253,7 @@ class Project } /** - * @param int $createdBy Creator + * @param $createdBy Creator * * @since 1.0.0 */