Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix php7.3 compat
Signed-off-by: Robin Appelman <[email protected]>
  • Loading branch information
icewind1991 committed Dec 27, 2022
commit a9c41953adcede0bb67318c00f0da2064ff4726f
18 changes: 12 additions & 6 deletions apps/encryption/lib/Command/FixKeyLocation.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,18 @@
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;
Expand Down