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