summaryrefslogtreecommitdiff
path: root/vendor/symfony/cache/Simple/Psr6Cache.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/symfony/cache/Simple/Psr6Cache.php')
-rw-r--r--vendor/symfony/cache/Simple/Psr6Cache.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/vendor/symfony/cache/Simple/Psr6Cache.php b/vendor/symfony/cache/Simple/Psr6Cache.php
index 6330a4fadc..fceb9ba70f 100644
--- a/vendor/symfony/cache/Simple/Psr6Cache.php
+++ b/vendor/symfony/cache/Simple/Psr6Cache.php
@@ -147,14 +147,14 @@ class Psr6Cache implements CacheInterface, PruneableInterface, ResettableInterfa
} catch (Psr6CacheException $e) {
throw new InvalidArgumentException($e->getMessage(), $e->getCode(), $e);
}
- $values = array();
+ $values = [];
if (!$this->pool instanceof AdapterInterface) {
foreach ($items as $key => $item) {
$values[$key] = $item->isHit() ? $item->get() : $default;
}
- return $value;
+ return $values;
}
foreach ($items as $key => $item) {
@@ -170,7 +170,7 @@ class Psr6Cache implements CacheInterface, PruneableInterface, ResettableInterfa
unset($metadata[CacheItem::METADATA_TAGS]);
if ($metadata) {
- $values[$key] = array("\x9D".pack('VN', (int) $metadata[CacheItem::METADATA_EXPIRY] - self::METADATA_EXPIRY_OFFSET, $metadata[CacheItem::METADATA_CTIME])."\x5F" => $values[$key]);
+ $values[$key] = ["\x9D".pack('VN', (int) $metadata[CacheItem::METADATA_EXPIRY] - self::METADATA_EXPIRY_OFFSET, $metadata[CacheItem::METADATA_CTIME])."\x5F" => $values[$key]];
}
}
@@ -186,7 +186,7 @@ class Psr6Cache implements CacheInterface, PruneableInterface, ResettableInterfa
if (!$valuesIsArray && !$values instanceof \Traversable) {
throw new InvalidArgumentException(sprintf('Cache values must be array or Traversable, "%s" given', \is_object($values) ? \get_class($values) : \gettype($values)));
}
- $items = array();
+ $items = [];
try {
if (null !== $f = $this->createCacheItem) {
@@ -195,7 +195,7 @@ class Psr6Cache implements CacheInterface, PruneableInterface, ResettableInterfa
$items[$key] = $f($key, $value, true);
}
} elseif ($valuesIsArray) {
- $items = array();
+ $items = [];
foreach ($values as $key => $value) {
$items[] = (string) $key;
}