Skip to content

Commit 0f188f3

Browse files
taylorotwellgithub-actions[bot]
authored andcommitted
Update facade docblocks
1 parent 9bc7831 commit 0f188f3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Illuminate/Support/Facades/Cache.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
* @method static bool missing(string $key)
1919
* @method static mixed get(array|string $key, mixed|\Closure $default = null)
2020
* @method static array many(array $keys)
21-
* @method static iterable getMultiple(iterable $keys, mixed $default = null)
21+
* @method static iterable getMultiple(void $keys, void $default = null)
2222
* @method static mixed pull(array|string $key, mixed|\Closure $default = null)
2323
* @method static bool put(array|string $key, mixed $value, \DateTimeInterface|\DateInterval|int|null $ttl = null)
24-
* @method static bool set(string $key, mixed $value, null|int|\DateInterval $ttl = null)
24+
* @method static bool set(void $key, void $value, void $ttl = null)
2525
* @method static bool putMany(array $values, \DateTimeInterface|\DateInterval|int|null $ttl = null)
26-
* @method static bool setMultiple(iterable $values, null|int|\DateInterval $ttl = null)
26+
* @method static bool setMultiple(void $values, void $ttl = null)
2727
* @method static bool add(string $key, mixed $value, \DateTimeInterface|\DateInterval|int|null $ttl = null)
2828
* @method static int|bool increment(string $key, mixed $value = 1)
2929
* @method static int|bool decrement(string $key, mixed $value = 1)
@@ -32,8 +32,8 @@
3232
* @method static mixed sear(string $key, \Closure $callback)
3333
* @method static mixed rememberForever(string $key, \Closure $callback)
3434
* @method static bool forget(string $key)
35-
* @method static bool delete(string $key)
36-
* @method static bool deleteMultiple(iterable $keys)
35+
* @method static bool delete(void $key)
36+
* @method static bool deleteMultiple(void $keys)
3737
* @method static bool clear()
3838
* @method static \Illuminate\Cache\TaggedCache tags(array|mixed $names)
3939
* @method static bool supportsTags()

0 commit comments

Comments
 (0)