File tree 3 files changed +52
-0
lines changed
3 files changed +52
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ parameters:
13
13
consoleApplicationLoader : null
14
14
stubFiles :
15
15
- stubs/Psr/Cache/CacheItemInterface.stub
16
+ - stubs/Psr/Cache/CacheItemPoolInterface.stub
16
17
- stubs/Symfony/Bundle/FrameworkBundle/KernelBrowser.stub
17
18
- stubs/Symfony/Bundle/FrameworkBundle/Test/KernelTestCase.stub
18
19
- stubs/Symfony/Bundle/FrameworkBundle/Test/TestContainer.stub
Original file line number Diff line number Diff line change 2
2
3
3
namespace Psr\Cache;
4
4
5
+ /**
6
+ * @template TValue
7
+ */
5
8
interface CacheItemInterface
6
9
{
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);
7
21
}
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments