Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class CreateIpListsTable extends Migration |
||
16 | { |
||
17 | /** |
||
18 | * Run the migrations. |
||
19 | * |
||
20 | * @return void |
||
21 | */ |
||
22 | public function up() |
||
23 | { |
||
24 | Schema::create('ip_lists', function (Blueprint $table) { |
||
25 | $table->bigIncrements('id'); |
||
26 | $table->string('group'); |
||
27 | $table->string('definition'); |
||
28 | $table->string('ip'); |
||
29 | $table->timestamps(); |
||
30 | }); |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * Reverse the migrations. |
||
35 | * |
||
36 | * @return void |
||
37 | */ |
||
38 | public function down() |
||
41 | } |
||
42 | } |
||
43 |
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