Total Complexity | 2 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
18 | class RatingGuideQuestion extends BaseModel |
||
19 | { |
||
20 | /** |
||
21 | * The columns that can be filled with mass-assignment |
||
22 | * |
||
23 | * @var string[] |
||
24 | */ |
||
25 | protected $fillable = ['question']; |
||
26 | |||
27 | /** |
||
28 | * Get the JobPoster relation. |
||
29 | * |
||
30 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
||
31 | */ |
||
32 | public function job_poster() |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * Get the AssessmentType relation. |
||
39 | * |
||
40 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
||
41 | */ |
||
42 | public function assessment_type() |
||
47 |