Total Complexity | 2 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
21 | class ScreeningPlan extends BaseModel |
||
22 | { |
||
23 | /** |
||
24 | * The columns that can be filled with mass-assignment |
||
25 | * |
||
26 | * @var string[] |
||
27 | */ |
||
28 | protected $fillable = []; |
||
29 | |||
30 | /** |
||
31 | * Get the JobPoster this plan belongs to. |
||
32 | * |
||
33 | * @return Illuminate\Database\Eloquent\Relations\Relation |
||
34 | */ |
||
35 | public function job_poster() // phpcs:ignore |
||
38 | } |
||
39 | |||
40 | /** |
||
41 | * Get the collection of Assessments that make up this plan. |
||
42 | * |
||
43 | * @return \Illuminate\Database\Eloquent\Collection |
||
44 | */ |
||
45 | public function assessments() // phpcs:ignore |
||
50 |