Total Complexity | 1 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
25 | class ExperienceWork extends BaseModel |
||
26 | { |
||
27 | protected $casts = [ |
||
28 | 'title' => 'string', |
||
29 | 'organization' => 'string', |
||
30 | 'group' => 'string', |
||
31 | 'is_active' => 'boolean', |
||
32 | 'start_date' => 'date', |
||
33 | 'end_date' => 'date', |
||
34 | 'is_education_requirement' => 'boolean' |
||
35 | ]; |
||
36 | |||
37 | protected $fillable = [ |
||
38 | 'title', |
||
39 | 'organization', |
||
40 | 'group', |
||
41 | 'is_active', |
||
42 | 'start_date', |
||
43 | 'end_date', |
||
44 | 'is_education_requirement' |
||
45 | ]; |
||
46 | |||
47 | protected $table = ['experiences_work']; |
||
48 | |||
49 | public function experienceable() //phpcs:ignore |
||
54 |