Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
31 | public function run(Channel $channel): \Generator |
||
32 | { |
||
33 | /** @var string $target_regex */ |
||
34 | $target_regex = yield $channel->receive(); |
||
35 | |||
36 | while (1) { |
||
37 | yield $channel->send( |
||
38 | new UpdateTargetProcessMessage( |
||
39 | new TargetProcessList( |
||
40 | ...$this->process_searcher->searchByRegex($target_regex) |
||
41 | ) |
||
42 | ) |
||
43 | ); |
||
44 | sleep(1); |
||
45 | } |
||
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