From 470a595fa6a5c311a27a2b4e1e6165a51eba48d9 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Fri, 27 Nov 2020 22:56:15 +0100 Subject: [PATCH] phpstan fixes --- Models/IncomeStatement.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Models/IncomeStatement.php b/Models/IncomeStatement.php index a65cba9..6f34567 100644 --- a/Models/IncomeStatement.php +++ b/Models/IncomeStatement.php @@ -32,7 +32,7 @@ class IncomeStatement */ protected int $id = 0; - private $date = null; + private ?\DateTime $date = null; - private $incomeStatement = []; + private array $incomeStatement = []; }