|
18 | 18 | * @method static bool missing(string $key)
|
19 | 19 | * @method static mixed get(array|string $key, mixed|\Closure $default = null)
|
20 | 20 | * @method static array many(array $keys)
|
21 |
| - * @method static iterable getMultiple(void $keys, void $default = null) |
| 21 | + * @method static iterable getMultiple(iterable $keys, mixed $default = null) |
22 | 22 | * @method static mixed pull(array|string $key, mixed|\Closure $default = null)
|
23 | 23 | * @method static bool put(array|string $key, mixed $value, \DateTimeInterface|\DateInterval|int|null $ttl = null)
|
24 |
| - * @method static bool set(void $key, void $value, void $ttl = null) |
| 24 | + * @method static bool set(string $key, mixed $value, null|int|\DateInterval $ttl = null) |
25 | 25 | * @method static bool putMany(array $values, \DateTimeInterface|\DateInterval|int|null $ttl = null)
|
26 |
| - * @method static bool setMultiple(void $values, void $ttl = null) |
| 26 | + * @method static bool setMultiple(iterable $values, null|int|\DateInterval $ttl = null) |
27 | 27 | * @method static bool add(string $key, mixed $value, \DateTimeInterface|\DateInterval|int|null $ttl = null)
|
28 | 28 | * @method static int|bool increment(string $key, mixed $value = 1)
|
29 | 29 | * @method static int|bool decrement(string $key, mixed $value = 1)
|
|
32 | 32 | * @method static mixed sear(string $key, \Closure $callback)
|
33 | 33 | * @method static mixed rememberForever(string $key, \Closure $callback)
|
34 | 34 | * @method static bool forget(string $key)
|
35 |
| - * @method static bool delete(void $key) |
36 |
| - * @method static bool deleteMultiple(void $keys) |
| 35 | + * @method static bool delete(string $key) |
| 36 | + * @method static bool deleteMultiple(iterable $keys) |
37 | 37 | * @method static bool clear()
|
38 | 38 | * @method static \Illuminate\Cache\TaggedCache tags(array|mixed $names)
|
39 | 39 | * @method static bool supportsTags()
|
|
0 commit comments