Skip to content

Commit fe5da95

Browse files
authored
Cs fixes (#195)
1 parent 3bc5ca4 commit fe5da95

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
@@ -129,8 +129,8 @@ protected function clearOneObjectFromCache($key)
129129
*/
130130
protected function storeItemInCache(PhpCacheItem $item, $ttl)
131131
{
132-
$key = $this->getHierarchyKey($item->getKey());
133-
$value = $item->get();
132+
$key = $this->getHierarchyKey($item->getKey());
133+
$value = $item->get();
134134
if (is_object($value)) {
135135
$value = clone $value;
136136
}

0 commit comments

Comments
 (0)