Conditions | 3 |
Paths | 3 |
Total Lines | 30 |
Code Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
30 | */ |
||
31 | public function invokeTest() |
||
32 | { |
||
33 | $configuration = $this->getConfiguration(); |
||
34 | |||
35 | switch ($this->store) { |
||
36 | case 'phpsession': |
||
37 | $test = new Store\Phpsession($configuration); |
||
38 | break; |
||
39 | case 'memcache': |
||
40 | $test = new Store\Memcache($configuration); |
||
41 | break; |
||
42 | // TODO: |
||
43 | // case 'redis': |
||
44 | // case 'redissentinel': |
||
45 | // $test = new Store\Redis($configuration); |
||
46 | // break; |
||
47 | // case 'sql': |
||
48 | // $test = new Store\Sql($configuration); |
||
49 | // break; |
||
50 | default: |
||
51 | SimpleSAML_Logger::warning("Not implemented; $this->store - Skipping Store TestSuite."); |
||
|
|||
52 | return; |
||
53 | } |
||
54 | |||
55 | $this->addTestResult($test->getTestResult()); |
||
56 | $this->setTestResult($test->getTestResult()); |
||
57 | } |
||
58 | } |
||
59 |
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