Skip to content

Commit b2cc293

Browse files
committed
cs
1 parent 9fe5d78 commit b2cc293

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/Tracing/Cache/TraceableCacheAdapterTrait.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,13 @@ public function getItem($key): CacheItem
4747
/**
4848
* {@inheritdoc}
4949
*
50-
* @psalm-return iterable<string, \Symfony\Component\Cache\CacheItem>
51-
* @phpstan-return iterable<string, \Symfony\Component\Cache\CacheItem>
50+
* @phpstan-return iterable<string, CacheItem>
51+
*
52+
* @psalm-return iterable<string, CacheItem>
5253
*/
5354
public function getItems(array $keys = []): iterable
5455
{
55-
/** @psalm-return iterable<string, \Symfony\Component\Cache\CacheItem> */
56+
/** @psalm-return iterable<string, CacheItem> */
5657
return $this->traceFunction('cache.get', function () use ($keys): iterable {
5758
return $this->decoratedAdapter->getItems($keys);
5859
});

0 commit comments

Comments
 (0)