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 <christoph@winzerhof-wurst.at>2018-07-24 11:06:40 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2018-07-24 11:06:40 +0300
commit0db61d0c0745fcd219b4d48b08f271f55ce8e3a9 (patch)
tree19e416024fac9796af425ab299dc6245e6063391 /lib/Command
parentf5e355684a5e0628a822653d65318b1e6666d0d7 (diff)
Make OCA\Mail\Command strict
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/Command')
-rw-r--r--lib/Command/CreateAccount.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/Command/CreateAccount.php b/lib/Command/CreateAccount.php
index ed599c7cc..010b5b646 100644
--- a/lib/Command/CreateAccount.php
+++ b/lib/Command/CreateAccount.php
@@ -1,5 +1,7 @@
<?php
+declare(strict_types=1);
+
/**
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
*
@@ -21,13 +23,13 @@
namespace OCA\Mail\Command;
+use OCA\Mail\Db\MailAccount;
+use OCA\Mail\Service\AccountService;
+use OCP\Security\ICrypto;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
-use OCP\Security\ICrypto;
-use OCA\Mail\Db\MailAccount;
-use OCA\Mail\Service\AccountService;
class CreateAccount extends Command {