From eb45e1c5d08d81d3b8ca9fbdf77116bd3e47c54c Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 21 Dec 2019 20:51:35 +0100 Subject: [PATCH] fix phpstan bugs --- Models/Creditor.php | 2 +- Models/Debitor.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Models/Creditor.php b/Models/Creditor.php index 4bec93d..73a97b8 100644 --- a/Models/Creditor.php +++ b/Models/Creditor.php @@ -37,7 +37,7 @@ class Creditor /** * Account. * - * @var null|int|phpOMS/Account/Account + * @var null|int|Account * @since 1.0.0 */ protected $account = null; diff --git a/Models/Debitor.php b/Models/Debitor.php index c7ca836..7b4d81b 100644 --- a/Models/Debitor.php +++ b/Models/Debitor.php @@ -37,7 +37,7 @@ class Debitor /** * Account. * - * @var null|int|phpOMS/Account/Account + * @var null|int|Account * @since 1.0.0 */ protected $account = null;