| Total Complexity | 5 | 
| Total Lines | 31 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 10 | final class PostForm extends FormModel | ||
| 11 | { | ||
| 12 | private ?string $title = null; | ||
| 13 | private ?string $content = null; | ||
| 14 | private array $tags = []; | ||
| 15 | |||
| 16 | public function getTitle(): string | ||
| 19 | } | ||
| 20 | |||
| 21 | public function getContent(): ?string | ||
| 22 |     { | ||
| 23 | return $this->content; | ||
| 24 | } | ||
| 25 | |||
| 26 | public function getFormName(): string | ||
| 27 |     { | ||
| 28 | return ''; | ||
| 29 | } | ||
| 30 | |||
| 31 | public function getTags(): array | ||
| 34 | } | ||
| 35 | |||
| 36 | public function getRules(): array | ||
| 41 | ]; | ||
| 42 | } | ||
| 44 | 
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