diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-04-09 16:14:31 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-04-09 16:14:31 +0200 |
commit | f4c09f299d989b117ebdf769632dcc6d4582791c (patch) | |
tree | e838ae71bb9424b25c824e563c634203ffe3a9d2 /apps/files_external | |
parent | bcd13296def0ac8b8fb48067472f1019d5715895 (diff) | |
download | nextcloud-server-f4c09f299d989b117ebdf769632dcc6d4582791c.tar.gz nextcloud-server-f4c09f299d989b117ebdf769632dcc6d4582791c.zip |
Make sure there is exactly one newline after imports
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/files_external')
-rw-r--r-- | apps/files_external/templates/settings.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index 5ec70031214..0142b206b3e 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -1,10 +1,10 @@ <?php use \OCA\Files_External\Lib\Backend\Backend; - use \OCA\Files_External\Lib\Auth\AuthMechanism; - use \OCA\Files_External\Lib\DefinitionParameter; - use \OCA\Files_External\Service\BackendService; +use \OCA\Files_External\Lib\Auth\AuthMechanism; +use \OCA\Files_External\Lib\DefinitionParameter; +use \OCA\Files_External\Service\BackendService; - $canCreateMounts = $_['visibilityType'] === BackendService::VISIBILITY_ADMIN || $_['allowUserMounting']; +$canCreateMounts = $_['visibilityType'] === BackendService::VISIBILITY_ADMIN || $_['allowUserMounting']; $l->t("Enable encryption"); $l->t("Enable previews"); |