| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 40 | protected static function putToCache(array $data, $sessionKey): array |
||
| 41 | { |
||
| 42 | if (count($data) > config('laravel-query-adviser.cache.max_entries')) { |
||
| 43 | array_shift($data); |
||
| 44 | } |
||
| 45 | |||
| 46 | Cache::put( |
||
| 47 | $sessionKey, |
||
| 48 | $data, |
||
| 49 | config('laravel-query-adviser.cache.ttl') |
||
| 50 | ); |
||
| 51 | |||
| 52 | return $data; |
||
| 53 | } |
||
| 81 |