| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | public static function createTable() |
||
| 16 | { |
||
| 17 | DB::schema()->create((new static())->table, function (Blueprint $table) { |
||
| 18 | $table->increments('id'); |
||
| 19 | $table->string('name'); |
||
| 20 | $table->string('email')->unique(); |
||
| 21 | $table->string('password'); |
||
| 22 | $table->string('token')->nullable(); |
||
| 23 | $table->boolean('is_admin')->default(false); |
||
| 24 | $table->timestamps(); |
||
| 25 | }); |
||
| 51 |
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