Total Complexity | 1 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
17 | class DataTranslation implements Translation |
||
18 | { |
||
19 | use Behavior\Translatable\Translation; |
||
20 | |||
21 | use Accessor\Title; |
||
22 | use Accessor\Data; |
||
23 | |||
24 | /** |
||
25 | * @var string |
||
26 | * @ORM\Column(name="title", type="string", length=255) |
||
27 | */ |
||
28 | private $title; |
||
29 | |||
30 | /** |
||
31 | * @var string |
||
32 | * @ORM\Column(name="data", type="json_array") |
||
33 | */ |
||
34 | private $data; |
||
35 | |||
36 | /** |
||
37 | * Constructor |
||
38 | */ |
||
39 | public function __construct() |
||
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