Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | public function __construct() |
||
16 | { |
||
17 | //длительность кеша |
||
18 | $this->cache_time_forever = (int) Config::get('app.cache_time_forever'); |
||
19 | $this->cache_enabled = (bool) Config::get('app.cache_enabled'); |
||
20 | |||
21 | $this->model = app($this->getModelClass()); |
||
22 | |||
23 | // Enable/disable cache repo |
||
24 | if (!$this->cache_enabled) { |
||
25 | $this->cache_time_forever = 0; |
||
26 | } |
||
34 |