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

github.com/nextcloud/password_policy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Rittershofer <jotoeri@users.noreply.github.com>2021-03-17 21:35:16 +0300
committerJonas Rittershofer <jotoeri@users.noreply.github.com>2021-03-17 21:49:01 +0300
commit3e6f2be151579c4d8db849c919539dad18b6b62a (patch)
tree4eca5614715fe2c013cd4e2583e984b9f8bda57a /appinfo
parent8c24c43cec835124438a9ee9779beafb16593f97 (diff)
Run CS-Fix
Signed-off-by: Jonas Rittershofer <jotoeri@users.noreply.github.com>
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/routes.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index 847f5ce..67ef81e 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -1,4 +1,5 @@
<?php
+
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl>
@@ -26,12 +27,12 @@ return [
'ocs' => [
[
'name' => 'API#generate',
- 'url' =>'/api/v1/generate',
+ 'url' => '/api/v1/generate',
'verb' => 'GET',
],
[
'name' => 'API#validate',
- 'url' =>'/api/v1/validate',
+ 'url' => '/api/v1/validate',
'verb' => 'POST',
]
]