Conditions | 1 |
Paths | 1 |
Total Lines | 4 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php namespace GeneaLabs\LaravelModelCaching\Traits; |
||
44 | protected function makeCacheKey(array $columns = ['*'], $idColumn = null) : string |
||
45 | { |
||
46 | return (new CacheKey($this->eagerLoad, $this->model, $this->query)) |
||
3 ignored issues
–
show
|
|||
47 | ->make($columns, $idColumn); |
||
48 | } |
||
56 |