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

Issues (969)

Branch: fix-hooks-at-setup-level

tests/config/Models/Uploader.php (1 issue)

Severity
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
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