| Total Complexity | 1 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | class PageTranslation implements Translation |
||
| 18 | { |
||
| 19 | use Behavior\Translatable\Translation; |
||
| 20 | |||
| 21 | use Accessor\Title; |
||
| 22 | use Accessor\Description; |
||
| 23 | use Accessor\Presentation; |
||
| 24 | use Accessor\Data; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var string |
||
| 28 | * @ORM\Column(name="title", type="string", length=255, nullable=true) |
||
| 29 | */ |
||
| 30 | private $title; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @var string |
||
| 34 | * @ORM\Column(name="description", type="string", length=255, nullable=true) |
||
| 35 | */ |
||
| 36 | private $description; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @var string |
||
| 40 | * @ORM\Column(name="presentation", type="text", nullable=true) |
||
| 41 | */ |
||
| 42 | private $presentation; |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @var string |
||
| 46 | * @ORM\Column(name="data", type="json_array", options={"default":"{}"}) |
||
| 47 | */ |
||
| 48 | private $data; |
||
| 49 | |||
| 50 | /** |
||
| 51 | * Constructor |
||
| 52 | */ |
||
| 53 | public function __construct() |
||
| 58 |
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