From adfdb960eead04eb72c23172b9b2a8115e975b0d Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 10 Nov 2022 16:28:29 +0100 Subject: [PATCH] fix php 7.3 compat Signed-off-by: Robin Appelman --- core/Command/Maintenance/RepairShareOwnership.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/core/Command/Maintenance/RepairShareOwnership.php b/core/Command/Maintenance/RepairShareOwnership.php index 79b680d9233..e3a2f07d134 100644 --- a/core/Command/Maintenance/RepairShareOwnership.php +++ b/core/Command/Maintenance/RepairShareOwnership.php @@ -38,8 +38,10 @@ use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Question\ConfirmationQuestion; class RepairShareOwnership extends Command { - private IDBConnection $dbConnection; - private IUserManager $userManager; + /** @var IDBConnection $dbConnection */ + private $dbConnection; + /** @var IUserManager $userManager */ + private $userManager; public function __construct( IDBConnection $dbConnection,