| Total Complexity | 0 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | class TextTranslation implements Translation |
||
| 18 | { |
||
| 19 | use Behavior\Translatable\Translation; |
||
| 20 | |||
| 21 | use Accessor\Title; |
||
| 22 | use Accessor\Value; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var string |
||
| 26 | * @ORM\Column(name="title", type="string", length=255, nullable=true) |
||
| 27 | */ |
||
| 28 | private $title; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @var string |
||
| 32 | * @ORM\Column(name="value", type="text", nullable=true) |
||
| 33 | */ |
||
| 34 | private $value; |
||
| 35 | } |
||
| 36 |
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