We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Total Complexity | 0 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
7 | class Uploader extends Model |
||
8 | { |
||
9 | use \Backpack\CRUD\app\Models\Traits\CrudTrait; |
||
|
|||
10 | |||
11 | /** |
||
12 | * The attributes that are mass assignable. |
||
13 | * |
||
14 | * @var array |
||
15 | */ |
||
16 | protected $fillable = ['upload', 'upload_multiple', 'extras']; |
||
17 | |||
18 | protected $casts = [ |
||
19 | 'upload_multiple' => 'json', |
||
20 | ]; |
||
21 | |||
22 | public $timestamps = false; |
||
23 | } |
||
24 |