| Total Complexity | 1 | 
| Total Lines | 32 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 17 | class CaseStatusTranslation implements Translation | ||
| 18 | { | ||
| 19 | use Behavior\Translatable\Translation; | ||
| 20 | |||
| 21 | use Accessor\Title; | ||
| 22 | use Accessor\Description; | ||
| 23 | use Accessor\Data; | ||
| 24 | |||
| 25 | /** | ||
| 26 | * @var string | ||
| 27 | * @ORM\Column(name="title", type="string", length=255, nullable=true) | ||
| 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="data", type="json_array") | ||
| 40 | */ | ||
| 41 | private $data; | ||
| 42 | |||
| 43 | /** | ||
| 44 | * Constructor | ||
| 45 | */ | ||
| 46 | public function __construct() | ||
| 51 | 
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