Total Complexity | 1 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class ApiAuthOprateEvent extends Model |
||
10 | { |
||
11 | protected static $nameRegex = '/^[a-z0-9-]{1,255}$/'; |
||
12 | |||
13 | /** |
||
14 | * The attributes that are mass assignable. |
||
15 | * |
||
16 | * @var array |
||
17 | */ |
||
18 | protected $fillable = [ |
||
19 | 'app_client_id', |
||
20 | 'ip_address', |
||
21 | 'event', |
||
22 | ]; |
||
23 | |||
24 | /** |
||
25 | * The attributes that should be hidden for arrays. |
||
26 | * |
||
27 | * @var array |
||
28 | */ |
||
29 | protected $hidden = []; |
||
30 | |||
31 | /** |
||
32 | * ApiAuthOprateEvent constructor. |
||
33 | * @param array $attributes |
||
34 | */ |
||
35 | public function __construct(array $attributes = []) |
||
40 | } |
||
41 | } |
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