| Total Complexity | 2 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | class CaseTranslation implements Translation |
||
| 18 | { |
||
| 19 | use Behavior\Translatable\Translation; |
||
| 20 | |||
| 21 | use Accessor\Title; |
||
| 22 | use Accessor\Data; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Returns the translatable entity class name. |
||
| 26 | * |
||
| 27 | * @return string |
||
| 28 | */ |
||
| 29 | public static function getTranslatableEntityClass() |
||
| 30 | { |
||
| 31 | return 'App\Entity\CaseEntity'; |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @var string |
||
| 36 | * @ORM\Column(name="title", type="string", length=255, nullable=true) |
||
| 37 | */ |
||
| 38 | private $title; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @var string |
||
| 42 | * @ORM\Column(name="data", type="json_array") |
||
| 43 | */ |
||
| 44 | private $data; |
||
| 45 | |||
| 46 | /** |
||
| 47 | * Constructor |
||
| 48 | */ |
||
| 49 | public function __construct() |
||
| 52 | } |
||
| 53 | } |
||
| 54 |
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