@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('repositories', function (Blueprint $table) { |
|
16 | + Schema::create('repositories', function(Blueprint $table) { |
|
17 | 17 | $table->increments('id'); |
18 | 18 | $table->string('group')->nullable(); |
19 | 19 | $table->integer('gid')->nullable(); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('family_slgs', function (Blueprint $table) { |
|
16 | + Schema::create('family_slgs', function(Blueprint $table) { |
|
17 | 17 | $table->id(); |
18 | 18 | $table->integer('family_id')->nullable(); |
19 | 19 | $table->string('stat')->nullable(); |
@@ -7,7 +7,7 @@ |
||
7 | 7 | use Rector\Set\ValueObject\SetList; |
8 | 8 | use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator; |
9 | 9 | |
10 | -return static function (ContainerConfigurator $containerConfigurator): void { |
|
10 | +return static function(ContainerConfigurator $containerConfigurator): void { |
|
11 | 11 | $containerConfigurator->import(SetList::PHP_80); |
12 | 12 | // get parameters |
13 | 13 | $parameters = $containerConfigurator->parameters(); |