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