Skip to content

Commit bc6a0b0

Browse files
committed
Style fix
1 parent 6636cd2 commit bc6a0b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ArrayCachePool.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public function __construct($limit = null, array &$cache = [])
6868
protected function getItemWithoutGenerateCacheKey($key)
6969
{
7070
if (isset($this->deferred[$key])) {
71-
/** @var CacheItem $item */
71+
/** @type CacheItem $item */
7272
$item = clone $this->deferred[$key];
7373
$item->moveTagsToPrevious();
7474

@@ -90,7 +90,7 @@ public function getItem($key)
9090
{
9191
$this->validateKey($key);
9292
if (isset($this->deferred[$key])) {
93-
/** @var CacheItem $item */
93+
/** @type CacheItem $item */
9494
$item = clone $this->deferred[$key];
9595
$item->moveTagsToPrevious();
9696

0 commit comments

Comments
 (0)