Conditions | 6 |
Paths | 3 |
Total Lines | 12 |
Code Lines | 6 |
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 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths