Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php |
||
25 | protected function resolveCache($cache): CacheInterface |
||
26 | { |
||
27 | if ($cache instanceof CacheInterface) { |
||
28 | return $cache; |
||
29 | } |
||
30 | |||
31 | if ($cache === null) { |
||
32 | $cache = HubSpot::getInstance()->getSettings()->getDefaultCache(); |
||
33 | } |
||
34 | |||
35 | return HubSpot::getInstance()->getCache()->get($cache); |
||
36 | } |
||
37 | } |
||
38 |