Total Complexity | 2 |
Total Lines | 42 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | class FamilyEvent extends Event |
||
9 | { |
||
10 | use SoftDeletes; |
||
11 | |||
12 | /** |
||
13 | * The attributes that should be mutated to dates. |
||
14 | * |
||
15 | * @var array |
||
16 | */ |
||
17 | protected $dates = ['deleted_at']; |
||
18 | |||
19 | protected $table = 'family_events'; |
||
20 | |||
21 | protected $fillable = [ |
||
22 | 'family_id', |
||
23 | 'places_id', |
||
24 | 'date', |
||
25 | 'created_date', |
||
26 | 'title', |
||
27 | 'description', |
||
28 | 'year', |
||
29 | 'month', |
||
30 | 'day', |
||
31 | 'type', |
||
32 | 'plac', |
||
33 | 'phon', |
||
34 | 'caus', |
||
35 | 'age', |
||
36 | 'husb', |
||
37 | 'wife', |
||
38 | ]; |
||
39 | |||
40 | public static function boot() |
||
45 | } |
||
46 | |||
47 | public function family() |
||
52 |
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