Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | public function test_store_default_no_name() |
||
17 | { |
||
18 | /** @var Mock|CacheManager $manager */ |
||
19 | $manager = \Mockery::mock(CacheManager::class)->shouldAllowMockingProtectedMethods()->makePartial(); |
||
20 | $manager->shouldReceive('getDefaultStore')->andReturn('default_value'); |
||
21 | $manager->shouldReceive('getStore')->with('default_value')->andReturn(true); |
||
22 | |||
23 | self::assertTrue($manager->store(null)); |
||
24 | self::assertTrue($manager->store(0)); |
||
25 | self::assertTrue($manager->store('')); |
||
26 | } |
||
40 |
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