fix php 7.3 compat

Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
Robin Appelman 2022-11-10 16:28:29 +01:00
parent 8c097afbdc
commit adfdb960ee
No known key found for this signature in database
GPG key ID: 42B69D8A64526EFB

View file

@ -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,