Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Uploader
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
eloc 6
c 1
b 1
f 0
dl 0
loc 16
wmc 0
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
The trait Backpack\CRUD\app\Models\Traits\CrudTrait requires some properties which are not provided by Backpack\CRUD\Tests\config\Models\Uploader: $identifiableAttribute, $Type, $fakeColumns
Loading history...
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