Skip to content

Commit a9c4195

Browse files
committed
fix php7.3 compat
Signed-off-by: Robin Appelman <robin@icewind.nl>
1 parent 477bef6 commit a9c4195

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

apps/encryption/lib/Command/FixKeyLocation.php

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,18 @@
4040
use Symfony\Component\Console\Output\OutputInterface;
4141

4242
class FixKeyLocation extends Command {
43-
private IUserManager $userManager;
44-
private IUserMountCache $userMountCache;
45-
private Util $encryptionUtil;
46-
private IRootFolder $rootFolder;
47-
private string $keyRootDirectory;
48-
private View $rootView;
43+
/** @var IUserManager */
44+
private $userManager;
45+
/** @var IUserMountCache */
46+
private $userMountCache;
47+
/** @var Util */
48+
private $encryptionUtil;
49+
/** @var IRootFolder */
50+
private $rootFolder;
51+
/** @var string */
52+
private $keyRootDirectory;
53+
/** @var View */
54+
private $rootView;
4955

5056
public function __construct(IUserManager $userManager, IUserMountCache $userMountCache, Util $encryptionUtil, IRootFolder $rootFolder) {
5157
$this->userManager = $userManager;

0 commit comments

Comments
 (0)