Conditions | 2 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | public function __construct(private string $model) |
||
22 | { |
||
23 | $this->driver = config('laracache.driver') ?: config('cache.default'); |
||
24 | $this->key = self::LARACACHE_MODELS_LIST; |
||
25 | |||
26 | $this->connection = config('laracache.queue.connection', config('queue.default')); |
||
27 | $this->queue = config('laracache.queue.name', 'default'); |
||
28 | } |
||
42 |