mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 00:32:29 -04:00
fix php7.3 compat
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
477bef600f
commit
a9c41953ad
1 changed files with 12 additions and 6 deletions
|
|
@ -40,12 +40,18 @@ use Symfony\Component\Console\Input\InputOption;
|
|||
use Symfony\Component\Console\Output\OutputInterface;
|
||||
|
||||
class FixKeyLocation extends Command {
|
||||
private IUserManager $userManager;
|
||||
private IUserMountCache $userMountCache;
|
||||
private Util $encryptionUtil;
|
||||
private IRootFolder $rootFolder;
|
||||
private string $keyRootDirectory;
|
||||
private View $rootView;
|
||||
/** @var IUserManager */
|
||||
private $userManager;
|
||||
/** @var IUserMountCache */
|
||||
private $userMountCache;
|
||||
/** @var Util */
|
||||
private $encryptionUtil;
|
||||
/** @var IRootFolder */
|
||||
private $rootFolder;
|
||||
/** @var string */
|
||||
private $keyRootDirectory;
|
||||
/** @var View */
|
||||
private $rootView;
|
||||
|
||||
public function __construct(IUserManager $userManager, IUserMountCache $userMountCache, Util $encryptionUtil, IRootFolder $rootFolder) {
|
||||
$this->userManager = $userManager;
|
||||
|
|
|
|||
Loading…
Reference in a new issue