Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Command/ExportAccount.php')
-rw-r--r--lib/Command/ExportAccount.php7
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/Command/ExportAccount.php b/lib/Command/ExportAccount.php
index 4dfe724e2..467c1294d 100644
--- a/lib/Command/ExportAccount.php
+++ b/lib/Command/ExportAccount.php
@@ -31,11 +31,8 @@ use Symfony\Component\Console\Output\OutputInterface;
class ExportAccount extends Command {
public const ARGUMENT_USER_ID = 'user-id';
- /** @var AccountService */
- private $accountService;
-
- /** @var ICrypto */
- private $crypto;
+ private AccountService $accountService;
+ private ICrypto $crypto;
public function __construct(AccountService $service, ICrypto $crypto) {
parent::__construct();