Total Complexity | 0 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
17 | class FileTranslation implements Translation |
||
18 | { |
||
19 | use Behavior\Translatable\Translation; |
||
20 | |||
21 | use Accessor\Title; |
||
22 | use Accessor\Description; |
||
23 | use Accessor\Presentation; |
||
24 | |||
25 | /** |
||
26 | * @var string |
||
27 | * @ORM\Column(name="title", type="string", length=255) |
||
28 | */ |
||
29 | private $title; |
||
30 | |||
31 | /** |
||
32 | * @var string |
||
33 | * @ORM\Column(name="description", type="text", nullable=true) |
||
34 | */ |
||
35 | private $description; |
||
36 | |||
37 | /** |
||
38 | * @var string |
||
39 | * @ORM\Column(name="presentation", type="text", nullable=true) |
||
40 | */ |
||
41 | private $presentation; |
||
42 | } |
||
43 |
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