Skip to content

Commit

Permalink
Fixed methods signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
rennokki authored Jan 14, 2022
1 parent 178897e commit 12669e1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/Traits/QueryCacheable.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
use Rennokki\QueryCache\Query\Builder;

/**
* @method static bool flushQueryCache(string[] $array = [])
* @method static bool flushQueryCache(array $tags = [])
* @method static bool flushQueryCacheWithTag(string $string)
* @method static \Illuminate\Database\Query\Builder|static cacheFor()
* @method static \Illuminate\Database\Query\Builder|static cacheFor(\DateTime|int|null $time)
* @method static \Illuminate\Database\Query\Builder|static cacheForever()
* @method static \Illuminate\Database\Query\Builder|static dontCache()
* @method static \Illuminate\Database\Query\Builder|static doNotCache()
* @method static \Illuminate\Database\Query\Builder|static cachePrefix()
* @method static \Illuminate\Database\Query\Builder|static cacheTags()
* @method static \Illuminate\Database\Query\Builder|static appendCacheTags()
* @method static \Illuminate\Database\Query\Builder|static cacheDriver()
* @method static \Illuminate\Database\Query\Builder|static cacheBaseTags()
* @method static \Illuminate\Database\Query\Builder|static cachePrefix(string $prefix)
* @method static \Illuminate\Database\Query\Builder|static cacheTags(array $cacheTags = [])
* @method static \Illuminate\Database\Query\Builder|static appendCacheTags(array $cacheTags = [])
* @method static \Illuminate\Database\Query\Builder|static cacheDriver(string $cacheDriver)
* @method static \Illuminate\Database\Query\Builder|static cacheBaseTags(array $tags = [])
*/
trait QueryCacheable
{
Expand Down

0 comments on commit 12669e1

Please sign in to comment.