| Conditions | 6 |
| Paths | 3 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 42 |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | public function getCache() |
||
| 36 | { |
||
| 37 | if ($this->cache) { |
||
| 38 | return $this->cache; |
||
| 39 | } |
||
| 40 | |||
| 41 | if (property_exists($this, 'app') && $this->app instanceof ServiceContainer |
||
| 42 | && isset($this->app['cache']) && $this->app['cache'] instanceof CacheInterface) { |
||
| 43 | return $this->cache = $this->app['cache']; |
||
| 44 | } |
||
| 45 | |||
| 46 | return $this->cache = $this->createDefaultCache(); |
||
| 47 | } |
||
| 71 |