Completed
Push — master ( a89724...e1052c )
by Greg
06:01
created
app/Functions/FunctionsExport.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
                         break;
65 65
                     }
66 66
                     $newrec .= mb_substr($line, 0, $pos) . Gedcom::EOL;
67
-                    $line   = $level . ' CONC ' . mb_substr($line, $pos);
67
+                    $line = $level . ' CONC ' . mb_substr($line, $pos);
68 68
                 } while (mb_strlen($line) > Gedcom::LINE_LENGTH);
69 69
             }
70 70
             $newrec .= $line . Gedcom::EOL;
Please login to merge, or discard this patch.
app/Date/JulianDate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
         }
75 75
 
76 76
         if (preg_match('/^(\d+) B\.C\.$/', $year, $match)) {
77
-            return - (int) $match[1];
77
+            return -(int) $match[1];
78 78
         }
79 79
 
80 80
         return (int) $year;
Please login to merge, or discard this patch.
app/Functions/Functions.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
                                 return $new_path;
321 321
                             }
322 322
 
323
-                            $paths[]                     = $new_path;
323
+                            $paths[] = $new_path;
324 324
                             $visited[$spouse->xref()] = true;
325 325
                         }
326 326
                     }
@@ -334,7 +334,7 @@  discard block
 block discarded – undo
334 334
                                 return $new_path;
335 335
                             }
336 336
 
337
-                            $paths[]                    = $new_path;
337
+                            $paths[] = $new_path;
338 338
                             $visited[$child->xref()] = true;
339 339
                         }
340 340
                     }
@@ -353,7 +353,7 @@  discard block
 block discarded – undo
353 353
                                 return $new_path;
354 354
                             }
355 355
 
356
-                            $paths[]                     = $new_path;
356
+                            $paths[] = $new_path;
357 357
                             $visited[$spouse->xref()] = true;
358 358
                         }
359 359
                     }
@@ -367,7 +367,7 @@  discard block
 block discarded – undo
367 367
                                 return $new_path;
368 368
                             }
369 369
 
370
-                            $paths[]                    = $new_path;
370
+                            $paths[] = $new_path;
371 371
                             $visited[$child->xref()] = true;
372 372
                         }
373 373
                     }
Please login to merge, or discard this patch.
app/Module/OnThisDayModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
 
122 122
         // If we are only showing living individuals, then we don't need to search for DEAT events.
123 123
         if ($filter) {
124
-            $event_array  = array_diff($event_array, Gedcom::DEATH_EVENTS);
124
+            $event_array = array_diff($event_array, Gedcom::DEATH_EVENTS);
125 125
         }
126 126
 
127 127
         $events_filter = implode('|', $event_array);
Please login to merge, or discard this patch.
app/Module/UpcomingAnniversariesModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
 
122 122
         // If we are only showing living individuals, then we don't need to search for DEAT events.
123 123
         if ($filter) {
124
-            $event_array  = array_diff($event_array, Gedcom::DEATH_EVENTS);
124
+            $event_array = array_diff($event_array, Gedcom::DEATH_EVENTS);
125 125
         }
126 126
 
127 127
         $events_filter = implode('|', $event_array);
Please login to merge, or discard this patch.
app/Services/UpgradeService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
     {
77 77
         $latest_version = $this->fetchLatestVersion();
78 78
 
79
-        [, , $url] = explode('|', $latest_version . '||');
79
+        [,, $url] = explode('|', $latest_version . '||');
80 80
 
81 81
         return $url;
82 82
     }
Please login to merge, or discard this patch.
app/Census/CensusColumnNationality.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
         }
53 53
 
54 54
         // Did we emigrate or naturalise?
55
-        foreach ($individual->facts(['IMMI' ,'EMIG', 'NATU'], true) as $fact) {
55
+        foreach ($individual->facts(['IMMI', 'EMIG', 'NATU'], true) as $fact) {
56 56
             if (Date::compare($fact->date(), $this->date()) <= 0) {
57 57
                 $place = $fact->place()->gedcomName();
58 58
             }
Please login to merge, or discard this patch.
app/Statistics/Repository/PlaceRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
      */
50 50
     public function __construct(Tree $tree)
51 51
     {
52
-        $this->tree          = $tree;
52
+        $this->tree = $tree;
53 53
         $this->country_service = new CountryService();
54 54
     }
55 55
 
Please login to merge, or discard this patch.
modules_v4/example.disable/module.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,8 @@
 block discarded – undo
3 3
 use Fisharebest\Webtrees\Module\ModuleCustomInterface;
4 4
 use Fisharebest\Webtrees\Module\ModuleCustomTrait;
5 5
 
6
-return new class extends AbstractModule implements ModuleCustomInterface {
6
+return new class extends AbstractModule implements ModuleCustomInterface
7
+{
7 8
     use ModuleCustomTrait;
8 9
 
9 10
     /**
Please login to merge, or discard this patch.