Test Setup Failed
Branch master (a5899c)
by Curtis
13:03
created
src/migrations/2020_04_10_155307_create_repositories_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
src/migrations/2020_06_25_040418_create_family_slgs_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
rector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.