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