aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Route/CachingRouter.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/Route/CachingRouter.php')
-rw-r--r--lib/private/Route/CachingRouter.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Route/CachingRouter.php b/lib/private/Route/CachingRouter.php
index af68129e57d..6c3bb1fb711 100644
--- a/lib/private/Route/CachingRouter.php
+++ b/lib/private/Route/CachingRouter.php
@@ -49,7 +49,7 @@ class CachingRouter extends Router {
* @param bool $absolute
* @return string
*/
- public function generate($name, $parameters = array(), $absolute = false) {
+ public function generate($name, $parameters = [], $absolute = false) {
asort($parameters);
$key = $this->context->getHost() . '#' . $this->context->getBaseUrl() . $name . sha1(json_encode($parameters)) . (int)$absolute;
$cachedKey = $this->cache->get($key);