| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | class ApplicantProfileQuestion extends BaseModel |
||
| 28 | { |
||
| 29 | |||
| 30 | protected $fillable = []; |
||
| 31 | |||
| 32 | public function applicant_profile_answers() |
||
| 33 | { |
||
| 34 | return $this->hasMany(\App\Models\ApplicantProfileAnswer::class); |
||
| 35 | } |
||
| 36 | |||
| 37 | // Accessors |
||
| 38 | public function getQuestionAttribute() |
||
| 41 | } |
||
| 42 | |||
| 43 | public function getDescriptionAttribute() |
||
| 48 |