Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class CreateBanksTables extends Migration |
||
15 | { |
||
16 | /** |
||
17 | * Run the migrations. |
||
18 | * |
||
19 | * @return void |
||
20 | */ |
||
21 | public function up() |
||
22 | { |
||
23 | Schema::create('banks', function(Blueprint $table){ |
||
24 | $table->id(); |
||
25 | $table->string('sandi_bank',20); |
||
26 | $table->string('nama_bank'); |
||
27 | }); |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * Reverse the migrations. |
||
32 | * |
||
33 | * @return void |
||
34 | */ |
||
35 | public function down() |
||
38 | } |
||
39 | } |
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