File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -380,11 +380,8 @@ public function flush()
380
380
381
381
/**
382
382
* Remove all items from the cache.
383
- *
384
- * @param string $key
385
- * @return bool
386
383
*/
387
- protected function forgetMany (array $ keys )
384
+ protected function forgetMany (array $ keys ): bool
388
385
{
389
386
$ this ->table ()->whereIn ('key ' , array_map (function ($ key ) {
390
387
return $ this ->prefix .$ key ;
@@ -395,10 +392,8 @@ protected function forgetMany(array $keys)
395
392
396
393
/**
397
394
* Remove all expired items from the given set from the cache.
398
- *
399
- * @return bool
400
395
*/
401
- protected function forgetManyIfExpired (array $ keys , bool $ prefixed = false )
396
+ protected function forgetManyIfExpired (array $ keys , bool $ prefixed = false ): bool
402
397
{
403
398
$ this ->table ()
404
399
->whereIn ('key ' , $ prefixed ? $ keys : array_map (function ($ key ) {
You can’t perform that action at this time.
0 commit comments