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