Total Complexity | 1 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
23 | class AssessmentPlanNotification extends BaseModel |
||
24 | { |
||
25 | /** |
||
26 | * The columns that can be filled with mass-assignment |
||
27 | * |
||
28 | * @var string[] |
||
29 | */ |
||
30 | protected $fillable = [ |
||
31 | 'acknowledged' |
||
32 | ]; |
||
33 | |||
34 | /** |
||
35 | * How each column should be cast to a variable |
||
36 | */ |
||
1 ignored issue
–
show
|
|||
37 | protected $casts = []; |
||
38 | |||
39 | /** |
||
40 | * Get the JobPoster relationship |
||
41 | */ |
||
1 ignored issue
–
show
|
|||
42 | public function job_poster() |
||
47 |