Total Complexity | 1 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | class ModelTranslation extends Model |
||
9 | { |
||
10 | public $table = 'model_translations'; |
||
11 | |||
12 | public $primaryKey = 'id'; |
||
13 | |||
14 | protected $guarded = []; |
||
15 | |||
16 | public $rules = []; |
||
17 | |||
18 | protected $fillable = [ |
||
19 | // 'item', |
||
20 | // 'group', |
||
21 | // 'text', |
||
22 | // 'locale', |
||
23 | |||
24 | 'entity_id', |
||
25 | 'entity_type', |
||
26 | 'entity_data', |
||
27 | 'country_code', |
||
28 | 'language_code', |
||
29 | ]; |
||
30 | |||
31 | public function getDataAttribute() |
||
45 |
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