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

Passed
Push — coverage-badge-dont-delete ( 72d0fc...25f763 )
by
unknown
15:44 queued 33s
created

User   A

Complexity

Total Complexity 20

Size/Duplication

Total Lines 117
Duplicated Lines 0 %

Importance

Changes 2
Bugs 1 Features 0
Metric Value
eloc 26
c 2
b 1
f 0
dl 0
loc 117
rs 10
wmc 20

20 Methods

Rating   Name   Duplication   Size   Complexity  
A accountDetails() 0 3 1
A roles() 0 3 1
A recommends() 0 3 1
A articles() 0 3 1
A getNameComposedAttribute() 0 3 1
A comment() 0 3 1
A isNotRelation() 0 3 1
A comets() 0 3 1
A bills() 0 3 1
A stars() 0 3 1
A recommendsDuplicate() 0 3 1
A bang() 0 3 1
A isNotRelationPublic() 0 3 1
A planetsNonNullable() 0 3 1
A superArticlesDuplicates() 0 5 1
A planets() 0 3 1
A expenses() 0 3 1
A universes() 0 3 1
A superArticles() 0 3 1
A incomes() 0 3 1
1
<?php
2
3
namespace Backpack\CRUD\Tests\Config\Models;
4
5
use Backpack\CRUD\app\Models\Traits\CrudTrait;
6
use Illuminate\Database\Eloquent\Model;
7
8
class User extends Model
9
{
10
    use 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\User: $fakeColumns, $identifiableAttribute, $Type
Loading history...
11
12
    protected $table = 'users';
13
14
    protected $fillable = ['name', 'email', 'password', 'extras'];
15
16
    /**
17
     * Get the account details associated with the user.
18
     */
19
    public function accountDetails()
20
    {
21
        return $this->hasOne('Backpack\CRUD\Tests\config\Models\AccountDetails');
22
    }
23
24
    /**
25
     * Get the articles for this user.
26
     */
27
    public function articles()
28
    {
29
        return $this->hasMany('Backpack\CRUD\Tests\config\Models\Article');
30
    }
31
32
    /**
33
     * Get the user roles.
34
     */
35
    public function roles()
36
    {
37
        return $this->belongsToMany('Backpack\CRUD\Tests\config\Models\Role', 'user_role');
38
    }
39
40
    public function getNameComposedAttribute()
41
    {
42
        return $this->name.'++';
43
    }
44
45
    public function comment()
46
    {
47
        return $this->morphOne('Backpack\CRUD\Tests\config\Models\Comment', 'commentable');
48
    }
49
50
    public function recommends()
51
    {
52
        return $this->morphToMany('Backpack\CRUD\Tests\config\Models\Recommend', 'recommendable')->withPivot('text');
53
    }
54
55
    public function recommendsDuplicate()
56
    {
57
        return $this->morphToMany('Backpack\CRUD\Tests\config\Models\Recommend', 'recommendable')->withPivot(['text', 'id']);
58
    }
59
60
    public function bills()
61
    {
62
        return $this->morphToMany('Backpack\CRUD\Tests\config\Models\Bill', 'billable');
63
    }
64
65
    public function stars()
66
    {
67
        return $this->morphMany('Backpack\CRUD\Tests\config\Models\Star', 'starable');
68
    }
69
70
    public function superArticles()
71
    {
72
        return $this->belongsToMany('Backpack\CRUD\Tests\config\Models\Article', 'articles_user')->withPivot(['notes', 'start_date', 'end_date']);
73
    }
74
75
    public function superArticlesDuplicates()
76
    {
77
        return $this->belongsToMany('Backpack\CRUD\Tests\config\Models\Article', 'articles_user')
78
                        ->withPivot(['notes', 'start_date', 'end_date', 'id'])
79
                        ->using('Backpack\CRUD\Tests\config\Models\SuperArticlePivot');
80
    }
81
82
    public function universes()
83
    {
84
        return $this->hasMany('Backpack\CRUD\Tests\config\Models\Universe');
85
    }
86
87
    public function planets()
88
    {
89
        return $this->hasMany('Backpack\CRUD\Tests\config\Models\Planet');
90
    }
91
92
    public function planetsNonNullable()
93
    {
94
        return $this->hasMany('Backpack\CRUD\Tests\config\Models\PlanetNonNullable');
95
    }
96
97
    public function comets()
98
    {
99
        return $this->hasMany('Backpack\CRUD\Tests\config\Models\Comet');
100
    }
101
102
    public function bang()
103
    {
104
        return $this->belongsTo('Backpack\CRUD\Tests\config\Models\Bang', 'bang_relation_field');
105
    }
106
107
    public function incomes()
108
    {
109
        return $this->hasMany('Backpack\CRUD\Tests\config\Models\Transaction')->ofType('income');
110
    }
111
112
    public function expenses()
113
    {
114
        return $this->hasMany('Backpack\CRUD\Tests\config\Models\Transaction')->ofType('expense');
115
    }
116
117
    protected function isNotRelation()
118
    {
119
        return false;
120
    }
121
122
    public function isNotRelationPublic($arg)
0 ignored issues
show
Unused Code introduced by
The parameter $arg is not used and could be removed. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-unused  annotation

122
    public function isNotRelationPublic(/** @scrutinizer ignore-unused */ $arg)

This check looks for parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
123
    {
124
        return false;
125
    }
126
}
127