| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | public function Field($properties = array()) |
||
| 27 | { |
||
| 28 | $options = array(); |
||
| 29 | |||
| 30 | foreach ($this->getOptions()->filter('Selected', true) as $option) { |
||
| 31 | $options[] = $option->Title; |
||
| 32 | } |
||
| 33 | |||
| 34 | $field = ReadonlyField::create($this->name . '_Readonly', $this->title); |
||
| 35 | |||
| 36 | $field->setForm($this->form); |
||
| 37 | $field->setValue(implode(', ', $options)); |
||
| 38 | return $field->Field(); |
||
| 39 | } |
||
| 41 |
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