| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 49 | 4 | public function setSetting(array $settings) |
|
| 50 | { |
||
| 51 | 4 | $cacheKey = $this->key; |
|
| 52 | |||
| 53 | 4 | $this->cache->forget($cacheKey); |
|
| 54 | |||
| 55 | 4 | $result = $this->repo->setSetting($settings); |
|
| 56 | |||
| 57 | 4 | $this->cache->put($cacheKey, $this->repo->allToArray(), config('ibrand.setting.minute')); |
|
| 58 | |||
| 59 | 4 | return $result; |
|
| 60 | |||
| 61 | } |
||
| 62 | |||
| 92 |