| Total Complexity | 1 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | class WorkExperience extends BaseModel |
||
| 28 | { |
||
| 29 | |||
| 30 | protected $casts = [ |
||
|
1 ignored issue
–
show
|
|||
| 31 | 'role' => 'string', |
||
| 32 | 'company' => 'string', |
||
| 33 | 'description' => 'string', |
||
| 34 | 'start_date' => 'date', |
||
| 35 | 'end_date' => 'date', |
||
| 36 | ]; |
||
| 37 | protected $fillable = [ |
||
|
1 ignored issue
–
show
|
|||
| 38 | 'role', |
||
| 39 | 'company', |
||
| 40 | 'description', |
||
| 41 | 'start_date', |
||
| 42 | 'end_date' |
||
| 43 | ]; |
||
| 44 | |||
| 45 | public function experienceable() |
||
| 50 |