Passed
Push — master ( 5d9325...8a350f )
by Curtis
11:22
created
src/migrations/2020_06_24_105140_create_person_lds_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('person_lds', function (Blueprint $table) {
16
+        Schema::create('person_lds', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('group')->nullable();
19 19
             $table->integer('gid')->nullable();
Please login to merge, or discard this patch.
src/migrations/2020_10_13_093608_create_person_desi_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('person_desi', function (Blueprint $table) {
16
+        Schema::create('person_desi', function(Blueprint $table) {
17 17
             $table->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_11_150000_update_add_columns_person_events_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     public function up()
15 15
     {
16 16
         //
17
-        Schema::table('person_events', function (Blueprint $table) {
17
+        Schema::table('person_events', function(Blueprint $table) {
18 18
             $table->unsignedBigInteger('person_id')->nullable();
19 19
             $table->string('title')->nullable();
20 20
             $table->string('date')->nullable();
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
     public function down()
32 32
     {
33 33
         //
34
-        Schema::table('person_events', function (Blueprint $table) {
34
+        Schema::table('person_events', function(Blueprint $table) {
35 35
             $table->dropColumn('person_id');
36 36
             $table->dropColumn('title');
37 37
             $table->dropColumn('description');
Please login to merge, or discard this patch.
src/migrations/2020_06_24_085159_create_source_data_even_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('source_data_even', function (Blueprint $table) {
16
+        Schema::create('source_data_even', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('group')->nullable();
19 19
             $table->string('gid')->nullable();
Please login to merge, or discard this patch.
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.
src/factories/PersonNameRomnFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
             'group' => $this->faker->word(), 'gid' => $this->faker->randomElement('1', '2'),
26 26
             'type'  => $this->faker->word(), 'name' => $this->faker->name(),
27 27
             'npfx'  => $this->faker->word(), 'givn' => $this->faker->firstName(),
28
-            'nick'  => $this->faker->userName(), 'spfx', 'surn' => $this->faker->lastName(),  'nsfx', 'created_at', 'updated_at',
28
+            'nick'  => $this->faker->userName(), 'spfx', 'surn' => $this->faker->lastName(), 'nsfx', 'created_at', 'updated_at',
29 29
         ];
30 30
     }
31 31
 }
Please login to merge, or discard this patch.
...25_031507_set_string_column_husband_id_and_wife_id_to_families_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::table('families', function (Blueprint $table) {
16
+        Schema::table('families', function(Blueprint $table) {
17 17
             $table->string('husband_id')->nullable()->change();
18 18
             $table->string('wife_id')->nullable()->change();
19 19
         });
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      */
27 27
     public function down()
28 28
     {
29
-        Schema::table('families', function (Blueprint $table) {
29
+        Schema::table('families', function(Blueprint $table) {
30 30
             $table->integer('husband_id')->nullable()->change();
31 31
             $table->integer('wife_id')->nullable()->change();
32 32
         });
Please login to merge, or discard this patch.