Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | class ApplicantClassification extends BaseModel |
||
21 | { |
||
22 | protected $casts = [ |
||
23 | 'applicant_id' => 'int', |
||
24 | 'classification_id' => 'int', |
||
25 | 'level' => 'int', |
||
26 | 'order' => 'int', |
||
27 | ]; |
||
28 | |||
29 | protected $fillable = [ |
||
30 | 'level', |
||
31 | 'order', |
||
32 | ]; |
||
33 | |||
34 | public function applicant() //phpcs:ignore |
||
37 | } |
||
38 | |||
39 | public function classification() //phpcs:ignore |
||
44 |