| Conditions | 1 |
| Paths | 1 |
| Total Lines | 20 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | public function up(): void |
||
| 13 | { |
||
| 14 | //Action when migrate up |
||
| 15 | $this->create('oauth_scopes', function (CreateTable $table) { |
||
| 16 | $table->integer('id') |
||
| 17 | ->autoincrement() |
||
| 18 | ->primary(); |
||
| 19 | |||
| 20 | $table->string('name') |
||
| 21 | ->notNull(); |
||
| 22 | |||
| 23 | $table->string('description'); |
||
| 24 | |||
| 25 | $table->boolean('is_default') |
||
| 26 | ->description('Whether is the default scope') |
||
| 27 | ->notNull(); |
||
| 28 | |||
| 29 | $table->timestamps(); |
||
| 30 | |||
| 31 | $table->engine('INNODB'); |
||
| 32 | }); |
||
| 41 |
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