| Total Complexity | 2 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class PersonEvent extends Event |
||
| 9 | { |
||
| 10 | use SoftDeletes; |
||
| 11 | |||
| 12 | protected $dates = ['deleted_at']; |
||
| 13 | |||
| 14 | protected $table = 'person_events'; |
||
| 15 | |||
| 16 | protected $fillable = [ |
||
| 17 | 'person_id', |
||
| 18 | 'places_id', |
||
| 19 | 'date', |
||
| 20 | 'title', |
||
| 21 | 'description', |
||
| 22 | 'year', |
||
| 23 | 'month', |
||
| 24 | 'day' |
||
| 25 | ]; |
||
| 26 | |||
| 27 | protected $gedcom_event_names = [ |
||
| 28 | 'BIRT' => "Birth", |
||
| 29 | 'DEAT' => "Death", |
||
| 30 | ]; |
||
| 31 | |||
| 32 | public static function boot() |
||
| 37 | } |
||
| 38 | |||
| 39 | public function person() |
||
| 44 |
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