Conditions | 4 |
Paths | 4 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
40 | public static function wait(int $pid) : void |
||
41 | { |
||
42 | if (isset(self::$exited[$pid])) { |
||
43 | Progress::exited(...self::$exited[$pid]); |
||
44 | } else { |
||
45 | if (false !== $ex = SWProcess::wait(true)) { |
||
46 | if ($ex['pid'] === $pid) { |
||
47 | Progress::exited($ex['pid'], $ex['signal'], $ex['code']); |
||
48 | } else { |
||
49 | self::$exited[$ex['pid']] = [$ex['pid'], $ex['signal'], $ex['code']]; |
||
50 | } |
||
55 |
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