Security update to Drupal 8.4.6
[yaffs-website] / vendor / doctrine / cache / lib / Doctrine / Common / Cache / CouchbaseCache.php
index c21691df96290b96eaa77e9c0faab5646c228a6a..fe35533a8c0dada272470a0033d2ca0f110d54f2 100644 (file)
@@ -110,12 +110,12 @@ class CouchbaseCache extends CacheProvider
         $server  = explode(":", $servers[0]);
         $key     = $server[0] . ":" . "11210";
         $stats   = $stats[$key];
-        return array(
+        return [
             Cache::STATS_HITS   => $stats['get_hits'],
             Cache::STATS_MISSES => $stats['get_misses'],
             Cache::STATS_UPTIME => $stats['uptime'],
             Cache::STATS_MEMORY_USAGE     => $stats['bytes'],
             Cache::STATS_MEMORY_AVAILABLE => $stats['limit_maxbytes'],
-        );
+        ];
     }
 }