| Total Complexity | 1 | 
| Total Lines | 35 | 
| Duplicated Lines | 0 % | 
| Changes | 2 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 9 | class ApiAuthAccessEvent extends Model | ||
| 10 | { | ||
| 11 | /** | ||
| 12 | * The attributes that are mass assignable. | ||
| 13 | * | ||
| 14 | * @var array | ||
| 15 | */ | ||
| 16 | protected $fillable = [ | ||
| 17 | 'appid', | ||
| 18 | 'ip_address', | ||
| 19 | 'url', | ||
| 20 | 'params', | ||
| 21 | 'type', | ||
| 22 | ]; | ||
| 23 | |||
| 24 | /** | ||
| 25 | * The attributes that should be hidden for arrays. | ||
| 26 | * | ||
| 27 | * @var array | ||
| 28 | */ | ||
| 29 | protected $hidden = []; | ||
| 30 | |||
| 31 | protected $casts = [ | ||
| 32 | 'params' => 'array' | ||
| 33 | ]; | ||
| 34 | |||
| 35 | /** | ||
| 36 | * ApiAuthAccessEvent constructor. | ||
| 37 | * @param array $attributes | ||
| 38 | */ | ||
| 39 | public function __construct(array $attributes = []) | ||
| 44 | } | ||
| 45 | } | 
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