Conditions | 1 |
Paths | 1 |
Total Lines | 21 |
Code Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | public function test() |
||
22 | { |
||
23 | $this |
||
24 | ->given($this->newTestedInstance) |
||
25 | ->then |
||
26 | ->float((float) (string) $this->testedInstance) |
||
27 | ->isEqualTo(0.0) |
||
28 | ; |
||
29 | |||
30 | $this |
||
31 | ->given($this->newTestedInstance(10.1)) |
||
32 | ->then |
||
33 | ->float((float) (string) $this->testedInstance) |
||
34 | ->isEqualTo(10.1) |
||
35 | ; |
||
36 | |||
37 | $this |
||
38 | ->given($this->newTestedInstance('10.1', false)) |
||
39 | ->then |
||
40 | ->float((float) (string) $this->testedInstance) |
||
41 | ->isEqualTo(10.1) |
||
42 | ; |
||
69 |
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