Total Complexity | 2 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class TagTranslation implements TagTranslationInterface |
||
15 | { |
||
16 | use TagTranslationTrait; |
||
17 | use Translation; |
||
18 | |||
19 | /** |
||
20 | * @var string|null |
||
21 | * |
||
22 | * @ORM\Column(type="string", length=191) |
||
23 | **/ |
||
24 | protected $text; |
||
25 | |||
26 | /** |
||
27 | * @return null|string |
||
28 | */ |
||
29 | public function getText(): ?string |
||
30 | { |
||
31 | return $this->text; |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * @param null|string $text |
||
36 | * |
||
37 | * @return TagTranslation |
||
38 | */ |
||
39 | public function setText(?string $text) |
||
44 | } |
||
45 | } |
||
46 |
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