summaryrefslogtreecommitdiffstats
path: root/apps/theming/appinfo
diff options
context:
space:
mode:
Diffstat (limited to 'apps/theming/appinfo')
-rw-r--r--apps/theming/appinfo/routes.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/theming/appinfo/routes.php b/apps/theming/appinfo/routes.php
index 30dcf3d5a4f..c61f776ac09 100644
--- a/apps/theming/appinfo/routes.php
+++ b/apps/theming/appinfo/routes.php
@@ -62,25 +62,25 @@ return ['routes' => [
'name' => 'Theming#getManifest',
'url' => '/manifest/{app}',
'verb' => 'GET',
- 'defaults' => array('app' => 'core')
+ 'defaults' => ['app' => 'core']
],
[
'name' => 'Icon#getFavicon',
'url' => '/favicon/{app}',
'verb' => 'GET',
- 'defaults' => array('app' => 'core'),
+ 'defaults' => ['app' => 'core'],
],
[
'name' => 'Icon#getTouchIcon',
'url' => '/icon/{app}',
'verb' => 'GET',
- 'defaults' => array('app' => 'core'),
+ 'defaults' => ['app' => 'core'],
],
[
'name' => 'Icon#getThemedIcon',
'url' => '/img/{app}/{image}',
'verb' => 'GET',
- 'requirements' => array('image' => '.+')
+ 'requirements' => ['image' => '.+']
],
]];