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,