Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | public function test() |
||
21 | { |
||
22 | $test = new SplString; |
||
23 | $this->assertSame('', (string) $test); |
||
24 | unset($test); |
||
25 | |||
26 | $test = new SplString('test'); |
||
27 | $this->assertSame('test', (string) $test); |
||
28 | unset($test); |
||
29 | |||
30 | $test = new SplString(0, false); |
||
31 | $this->assertSame('0', (string) $test); |
||
32 | unset($test); |
||
33 | } |
||
48 |
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