Skip to content

Commit 12669e1

Browse files
authored
Fixed methods signatures
1 parent 178897e commit 12669e1

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/Traits/QueryCacheable.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@
66
use Rennokki\QueryCache\Query\Builder;
77

88
/**
9-
* @method static bool flushQueryCache(string[] $array = [])
9+
* @method static bool flushQueryCache(array $tags = [])
1010
* @method static bool flushQueryCacheWithTag(string $string)
11-
* @method static \Illuminate\Database\Query\Builder|static cacheFor()
11+
* @method static \Illuminate\Database\Query\Builder|static cacheFor(\DateTime|int|null $time)
1212
* @method static \Illuminate\Database\Query\Builder|static cacheForever()
1313
* @method static \Illuminate\Database\Query\Builder|static dontCache()
1414
* @method static \Illuminate\Database\Query\Builder|static doNotCache()
15-
* @method static \Illuminate\Database\Query\Builder|static cachePrefix()
16-
* @method static \Illuminate\Database\Query\Builder|static cacheTags()
17-
* @method static \Illuminate\Database\Query\Builder|static appendCacheTags()
18-
* @method static \Illuminate\Database\Query\Builder|static cacheDriver()
19-
* @method static \Illuminate\Database\Query\Builder|static cacheBaseTags()
15+
* @method static \Illuminate\Database\Query\Builder|static cachePrefix(string $prefix)
16+
* @method static \Illuminate\Database\Query\Builder|static cacheTags(array $cacheTags = [])
17+
* @method static \Illuminate\Database\Query\Builder|static appendCacheTags(array $cacheTags = [])
18+
* @method static \Illuminate\Database\Query\Builder|static cacheDriver(string $cacheDriver)
19+
* @method static \Illuminate\Database\Query\Builder|static cacheBaseTags(array $tags = [])
2020
*/
2121
trait QueryCacheable
2222
{

0 commit comments

Comments
 (0)