Skip to content

Commit f323b37

Browse files
committed
Add generics to cache item
1 parent a535924 commit f323b37

File tree

3 files changed

+52
-0
lines changed

3 files changed

+52
-0
lines changed

extension.neon

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ parameters:
1313
consoleApplicationLoader: null
1414
stubFiles:
1515
- stubs/Psr/Cache/CacheItemInterface.stub
16+
- stubs/Psr/Cache/CacheItemPoolInterface.stub
1617
- stubs/Symfony/Bundle/FrameworkBundle/KernelBrowser.stub
1718
- stubs/Symfony/Bundle/FrameworkBundle/Test/KernelTestCase.stub
1819
- stubs/Symfony/Bundle/FrameworkBundle/Test/TestContainer.stub

stubs/Psr/Cache/CacheItemInterface.stub

+14
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
namespace Psr\Cache;
44

5+
/**
6+
* @template TValue
7+
*/
58
interface CacheItemInterface
69
{
10+
/**
11+
* @return TValue
12+
*/
13+
public function get();
14+
15+
/**
16+
* @param TValue $value
17+
*
18+
* @return static
19+
*/
20+
public function set($value);
721
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<?php
2+
3+
namespace Psr\Cache;
4+
5+
/**
6+
* @template TValue
7+
*/
8+
interface CacheItemPoolInterface
9+
{
10+
/**
11+
* @param string $key
12+
*
13+
* @return CacheItemInterface<TValue>
14+
*/
15+
public function getItem($key);
16+
17+
/**
18+
* @param array<string> $keys
19+
*
20+
* @return array<CacheItemInterface<TValue>>|\Traversable<CacheItemInterface<TValue>>
21+
*/
22+
public function getItems(array $keys = array());
23+
24+
/**
25+
* @param CacheItemInterface<TValue> $item
26+
*
27+
* @return bool
28+
*/
29+
public function save(CacheItemInterface $item);
30+
31+
/**
32+
* @param CacheItemInterface<TValue> $item
33+
*
34+
* @return bool
35+
*/
36+
public function saveDeferred(CacheItemInterface $item);
37+
}

0 commit comments

Comments
 (0)