mirror of
https://github.com/nextcloud/server.git
synced 2026-07-04 23:36:25 -04:00
fix php 7.3 compat
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
8c097afbdc
commit
adfdb960ee
1 changed files with 4 additions and 2 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue