aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Memcache
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/Memcache')
-rw-r--r--lib/private/Memcache/APCu.php2
-rw-r--r--lib/private/Memcache/Factory.php3
2 files changed, 2 insertions, 3 deletions
diff --git a/lib/private/Memcache/APCu.php b/lib/private/Memcache/APCu.php
index e1aec896db2..3523ea2a86b 100644
--- a/lib/private/Memcache/APCu.php
+++ b/lib/private/Memcache/APCu.php
@@ -59,7 +59,7 @@ class APCu extends Cache implements IMemcache {
public function clear($prefix = '') {
$ns = $this->getPrefix() . $prefix;
$ns = preg_quote($ns, '/');
- if(class_exists('\APCIterator')) {
+ if (class_exists('\APCIterator')) {
$iter = new \APCIterator('user', '/^' . $ns . '/', APC_ITER_KEY);
} else {
$iter = new \APCUIterator('/^' . $ns . '/', APC_ITER_KEY);
diff --git a/lib/private/Memcache/Factory.php b/lib/private/Memcache/Factory.php
index 675c1088dee..0e6552ba436 100644
--- a/lib/private/Memcache/Factory.php
+++ b/lib/private/Memcache/Factory.php
@@ -71,8 +71,7 @@ class Factory implements ICacheFactory {
* @param string|null $lockingCacheClass
*/
public function __construct(string $globalPrefix, ILogger $logger,
- $localCacheClass = null, $distributedCacheClass = null, $lockingCacheClass = null)
- {
+ $localCacheClass = null, $distributedCacheClass = null, $lockingCacheClass = null) {
$this->logger = $logger;
$this->globalPrefix = $globalPrefix;