Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class ReleaseNote extends Model |
||
12 | { |
||
13 | use HasFactory; |
||
14 | use SoftDeletes; |
||
15 | use HasUuid; |
||
16 | |||
17 | protected $table = 'release_notes'; |
||
18 | |||
19 | protected $fillable = [ |
||
20 | 'version', |
||
21 | 'note', |
||
22 | ]; |
||
23 | |||
24 | /** |
||
25 | * @codeCoverageIgnore |
||
26 | */ |
||
27 | protected static function newFactory(): ReleaseNoteFactory |
||
32 |
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