aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Files/Cache/Wrapper
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/Files/Cache/Wrapper')
-rw-r--r--lib/private/Files/Cache/Wrapper/CacheJail.php6
-rw-r--r--lib/private/Files/Cache/Wrapper/CacheWrapper.php8
2 files changed, 7 insertions, 7 deletions
diff --git a/lib/private/Files/Cache/Wrapper/CacheJail.php b/lib/private/Files/Cache/Wrapper/CacheJail.php
index 92601e38d13..e2ed62b4444 100644
--- a/lib/private/Files/Cache/Wrapper/CacheJail.php
+++ b/lib/private/Files/Cache/Wrapper/CacheJail.php
@@ -209,9 +209,9 @@ class CacheJail extends CacheWrapper {
}
private function formatSearchResults($results) {
- $results = array_filter($results, array($this, 'filterCacheEntry'));
+ $results = array_filter($results, [$this, 'filterCacheEntry']);
$results = array_values($results);
- return array_map(array($this, 'formatCacheEntry'), $results);
+ return array_map([$this, 'formatCacheEntry'], $results);
}
/**
@@ -282,7 +282,7 @@ class CacheJail extends CacheWrapper {
*/
public function getAll() {
// not supported
- return array();
+ return [];
}
/**
diff --git a/lib/private/Files/Cache/Wrapper/CacheWrapper.php b/lib/private/Files/Cache/Wrapper/CacheWrapper.php
index 40bac888673..27aa203655b 100644
--- a/lib/private/Files/Cache/Wrapper/CacheWrapper.php
+++ b/lib/private/Files/Cache/Wrapper/CacheWrapper.php
@@ -96,7 +96,7 @@ class CacheWrapper extends Cache {
*/
public function getFolderContentsById($fileId) {
$results = $this->getCache()->getFolderContentsById($fileId);
- return array_map(array($this, 'formatCacheEntry'), $results);
+ return array_map([$this, 'formatCacheEntry'], $results);
}
/**
@@ -223,7 +223,7 @@ class CacheWrapper extends Cache {
*/
public function search($pattern) {
$results = $this->getCache()->search($pattern);
- return array_map(array($this, 'formatCacheEntry'), $results);
+ return array_map([$this, 'formatCacheEntry'], $results);
}
/**
@@ -234,12 +234,12 @@ class CacheWrapper extends Cache {
*/
public function searchByMime($mimetype) {
$results = $this->getCache()->searchByMime($mimetype);
- return array_map(array($this, 'formatCacheEntry'), $results);
+ return array_map([$this, 'formatCacheEntry'], $results);
}
public function searchQuery(ISearchQuery $query) {
$results = $this->getCache()->searchQuery($query);
- return array_map(array($this, 'formatCacheEntry'), $results);
+ return array_map([$this, 'formatCacheEntry'], $results);
}
/**