| Conditions | 3 |
| Paths | 3 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php |
||
| 40 | private function doExecute(WordsStorageUploadCriteria $criteria): int |
||
| 41 | { |
||
| 42 | $count = 0; |
||
| 43 | foreach ($this->fileReader->read($criteria->filePath()) as $row) { |
||
| 44 | if ($count) { |
||
| 45 | $this->messageBus->dispatch(new SaveToStorageMessage($row[1], $row[2], $row[0])); |
||
| 46 | } |
||
| 47 | $count++; |
||
| 48 | } |
||
| 49 | |||
| 50 | return $count - 1; |
||
| 51 | } |
||
| 53 |
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