We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
1 | <?php |
||
2 | |||
3 | namespace Backpack\CRUD\Tests\config\Models; |
||
4 | |||
5 | use Illuminate\Database\Eloquent\Model; |
||
6 | |||
7 | class Uploader extends Model |
||
8 | { |
||
9 | use \Backpack\CRUD\app\Models\Traits\CrudTrait; |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
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 |