Total Complexity | 5 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | class UserGroup extends Model |
||
22 | { |
||
23 | /** |
||
24 | * The table associated with the model. |
||
25 | * |
||
26 | * @var string |
||
27 | */ |
||
28 | protected $table = 'user_groups'; |
||
29 | use HasRoles, Rememberable, TableCache; |
||
30 | |||
31 | protected $fillable = ['name', 'description']; |
||
32 | |||
33 | public function roles() |
||
36 | } |
||
37 | |||
38 | public function users() |
||
41 | } |
||
42 | |||
43 | public function delete() |
||
50 | } |
||
51 | |||
52 | public function scopeVisible($query) |
||
60 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths