We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fe5d78 commit b2cc293Copy full SHA for b2cc293
src/Tracing/Cache/TraceableCacheAdapterTrait.php
@@ -47,12 +47,13 @@ public function getItem($key): CacheItem
47
/**
48
* {@inheritdoc}
49
*
50
- * @psalm-return iterable<string, \Symfony\Component\Cache\CacheItem>
51
- * @phpstan-return iterable<string, \Symfony\Component\Cache\CacheItem>
+ * @phpstan-return iterable<string, CacheItem>
+ *
52
+ * @psalm-return iterable<string, CacheItem>
53
*/
54
public function getItems(array $keys = []): iterable
55
{
- /** @psalm-return iterable<string, \Symfony\Component\Cache\CacheItem> */
56
+ /** @psalm-return iterable<string, CacheItem> */
57
return $this->traceFunction('cache.get', function () use ($keys): iterable {
58
return $this->decoratedAdapter->getItems($keys);
59
});
0 commit comments