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 10:52:29 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2018-07-24 10:52:29 +0300
commit0e6901ff80cac2a528c7c2f7f2ccd81ba0010647 (patch)
tree4410d6c28a6661df7705dd3a1a6b63d74ca2f6c0 /lib/AppInfo
parentdd3226498eade4c0f72fbc9a6942afede1cddb04 (diff)
Make OCA\Mail\AppInfo strict
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/AppInfo')
-rw-r--r--lib/AppInfo/Application.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/AppInfo/Application.php b/lib/AppInfo/Application.php
index 619f33a53..055268f5f 100644
--- a/lib/AppInfo/Application.php
+++ b/lib/AppInfo/Application.php
@@ -1,5 +1,7 @@
<?php
+declare(strict_types=1);
+
/**
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
* @author Thomas Müller <thomas.mueller@tmit.eu>
@@ -30,11 +32,11 @@ use OCA\Mail\Contracts\IUserPreferences;
use OCA\Mail\Http\Middleware\ErrorMiddleware;
use OCA\Mail\Service\Attachment\AttachmentService;
use OCA\Mail\Service\AvatarService;
+use OCA\Mail\Service\Group\IGroupService;
+use OCA\Mail\Service\Group\NextcloudGroupService;
use OCA\Mail\Service\MailManager;
use OCA\Mail\Service\MailTransmission;
use OCA\Mail\Service\UserPreferenceSevice;
-use OCA\Mail\Service\Group\IGroupService;
-use OCA\Mail\Service\Group\NextcloudGroupService;
use OCP\AppFramework\App;
use OCP\Util;