| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | public function up() |
||
| 16 | { |
||
| 17 | $tableName = config('apikey.table_name.api_auth_oprate_events'); |
||
| 18 | |||
| 19 | Schema::create($tableName, function (Blueprint $table) { |
||
| 20 | $table->increments('id'); |
||
| 21 | $table->unsignedInteger('app_client_id'); |
||
| 22 | $table->ipAddress('ip_address'); |
||
| 23 | $table->string('event'); |
||
| 24 | $table->timestamps(); |
||
| 25 | }); |
||
| 26 | |||
| 27 | DB::statement("ALTER TABLE `{$tableName}` comment 'Admin oprate events'"); |
||
| 28 | } |
||
| 42 |
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