| Total Complexity | 1 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class ContentTypeText extends Model |
||
| 10 | { |
||
| 11 | use SoftDeletes, |
||
|
|
|||
| 12 | TranslationCalls; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * The attributes that are mass assignable. |
||
| 16 | * |
||
| 17 | * @var array |
||
| 18 | */ |
||
| 19 | protected $fillable = [ |
||
| 20 | 'locale', |
||
| 21 | 'group', |
||
| 22 | 'key', |
||
| 23 | 'value', |
||
| 24 | ]; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Get all of the owning linkable models. |
||
| 28 | */ |
||
| 29 | public function linkable() |
||
| 34 |