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