Skip to content

Commit 6b649cd

Browse files
committed
add Nette\Caching stub
1 parent f4654b2 commit 6b649cd

File tree

1 file changed

+82
-0
lines changed

1 file changed

+82
-0
lines changed

stubs/Caching/Cache.stub

+82
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
<?php
2+
3+
namespace Nette\Caching;
4+
5+
use Nette\InvalidArgumentException;
6+
7+
8+
/**
9+
* @phpstan-type cache-dependencies array{ priority?: int, expire?: string|int|\DateTimeInterface, sliding?: mixed, tags?: list<string>, files?: list<string>, items?: list<string>, const?: list<string>|string, callbacks?: list<array{0: (callable(): bool)}&array<mixed>>, namespaces?: list<string> }
10+
* @phpstan-type clean-conditions array{ priority?: int, tags?: list<string>, all?: true }
11+
*/
12+
class Cache
13+
{
14+
15+
/**
16+
* @template T
17+
* @param mixed $key
18+
* @param (callable(cache-dependencies &$dependencies): T)|null $generator
19+
* @return T
20+
*/
21+
public function load($key, callable $generator = null)
22+
{
23+
// nothing
24+
}
25+
26+
/**
27+
* @template T of array
28+
* @param array<mixed> $key
29+
* @param (callable(mixed, cache-dependencies &$dependencies): T)|null $generator
30+
* @return T
31+
*/
32+
public function bulkLoad($key, callable $generator = null)
33+
{
34+
// nothing
35+
}
36+
37+
/**
38+
* @template T
39+
* @param mixed $key
40+
* @param T $data
41+
* @param cache-dependencies|null $dependencies
42+
* @return T
43+
* @throws InvalidArgumentException
44+
*/
45+
public function save($key, $data, array $dependencies = null)
46+
{
47+
// nothing
48+
}
49+
50+
51+
/**
52+
* @param clean-conditions|null $conditions
53+
*/
54+
public function clean(array $conditions = null): void
55+
{
56+
// nothing
57+
}
58+
59+
60+
/**
61+
* @template T
62+
* @param (callable(): T) $function
63+
* @return T
64+
*/
65+
public function call(callable $function)
66+
{
67+
// nothing
68+
}
69+
70+
71+
/**
72+
* @template T
73+
* @param (callable(): T) $function
74+
* @param cache-dependencies|null $dependencies
75+
* @return (\Closure(): T)
76+
*/
77+
public function wrap(callable $function, array $dependencies = null): \Closure
78+
{
79+
// nothing
80+
}
81+
82+
}

0 commit comments

Comments
 (0)