| Total Complexity | 2 |
| Total Lines | 42 |
| Duplicated Lines | 0 % |
| Changes | 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 | 'title', |
||
| 19 | 'type', |
||
| 20 | 'attr', |
||
| 21 | 'date', |
||
| 22 | 'created_date', |
||
| 23 | 'plac', |
||
| 24 | 'phon', |
||
| 25 | 'caus', |
||
| 26 | 'age', |
||
| 27 | 'agnc', |
||
| 28 | 'places_id', |
||
| 29 | 'description', |
||
| 30 | 'year', |
||
| 31 | 'month', |
||
| 32 | 'day', |
||
| 33 | ]; |
||
| 34 | |||
| 35 | protected $gedcom_event_names = [ |
||
| 36 | 'BIRT' => 'Birth', |
||
| 37 | 'DEAT' => 'Death', |
||
| 38 | ]; |
||
| 39 | |||
| 40 | public static function boot() |
||
| 45 | } |
||
| 46 | |||
| 47 | public function person() |
||
| 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