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:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2022-10-01 21:15:19 +0300
committerGitHub <noreply@github.com>2022-10-01 21:15:19 +0300
commit8dec25c2df42fc6924ee61af6948f10e5f72353a (patch)
tree88aa651d425018d1bfb93941816efbc1896524ad /lib/Command/DeleteAccount.php
parenta91c4c809c301e11b914a603072f3ad871efdfd8 (diff)
parent10c0de330a2ce38bf201d69e820a353359ec4636 (diff)
Merge pull request #7361 from nextcloud/enh/move-commands-typed-properties
Move commands to typed properties
Diffstat (limited to 'lib/Command/DeleteAccount.php')
-rw-r--r--lib/Command/DeleteAccount.php7
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/Command/DeleteAccount.php b/lib/Command/DeleteAccount.php
index 2a7018b3e..c7859507e 100644
--- a/lib/Command/DeleteAccount.php
+++ b/lib/Command/DeleteAccount.php
@@ -36,11 +36,8 @@ use Symfony\Component\Console\Output\OutputInterface;
class DeleteAccount extends Command {
public const ARGUMENT_ACCOUNT_ID = 'account-id';
- /** @var AccountService */
- private $accountService;
-
- /** @var LoggerInterface */
- private $logger;
+ private AccountService $accountService;
+ private LoggerInterface $logger;
public function __construct(AccountService $service,
LoggerInterface $logger) {