Total Complexity | 3 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
27 | class WorkSample extends BaseModel |
||
28 | { |
||
29 | |||
30 | protected $casts = [ |
||
1 ignored issue
–
show
|
|||
31 | 'name' => 'string', |
||
32 | 'file_type_id' => 'int', |
||
33 | 'date_created' => 'date', |
||
34 | 'url' => 'string', |
||
35 | 'description' => 'string', |
||
36 | 'applicant_id' => 'int' |
||
37 | ]; |
||
38 | protected $fillable = [ |
||
1 ignored issue
–
show
|
|||
39 | 'name', |
||
40 | 'date_created', |
||
41 | 'file_type_id', |
||
42 | 'url', |
||
43 | 'description' |
||
44 | ]; |
||
45 | |||
46 | public function file_type() |
||
49 | } |
||
50 | |||
51 | public function skill_declarations() |
||
54 | } |
||
55 | |||
56 | public function applicant() |
||
61 |