Total Complexity | 1 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
19 | class AssessmentType extends BaseModel |
||
20 | { |
||
21 | use HasTranslations; |
||
22 | |||
23 | public $translatable = ['value']; |
||
24 | protected $fillable = []; |
||
25 | |||
26 | /** |
||
27 | * Get the collection of Assessments of this type. |
||
28 | * |
||
29 | * @return \Illuminate\Database\Eloquent\Collection |
||
30 | */ |
||
31 | public function assessments() // phpcs:ignore |
||
36 |