Passed
Pull Request — master (#3008)
by
unknown
05:51
created
app/Module/HourglassChartModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
 {
46 46
     use ModuleChartTrait;
47 47
 
48
-    protected const ROUTE_URL  = '/tree/{tree}/hourglass-{generations}-{spouses}/{xref}';
48
+    protected const ROUTE_URL = '/tree/{tree}/hourglass-{generations}-{spouses}/{xref}';
49 49
 
50 50
     // Defaults
51 51
     private const   DEFAULT_GENERATIONS = '3';
Please login to merge, or discard this patch.
app/Module/AncestorsChartModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
 {
46 46
     use ModuleChartTrait;
47 47
 
48
-    protected const ROUTE_URL  = '/tree/{tree}/ancestors-{style}-{generations}/{xref}';
48
+    protected const ROUTE_URL = '/tree/{tree}/ancestors-{style}-{generations}/{xref}';
49 49
 
50 50
     // Chart styles
51 51
     public const CHART_STYLE_TREE        = 'tree';
Please login to merge, or discard this patch.
app/Module/LifespansChartModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
 {
47 47
     use ModuleChartTrait;
48 48
 
49
-    protected const ROUTE_URL  = '/tree/{tree}/lifespans';
49
+    protected const ROUTE_URL = '/tree/{tree}/lifespans';
50 50
 
51 51
     // Defaults
52 52
     protected const DEFAULT_PARAMETERS = [];
Please login to merge, or discard this patch.
app/Http/Controllers/Admin/LocationController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -306,7 +306,7 @@  discard block
 block discarded – undo
306 306
             $breadcrumbs[] = I18N::translate('Add');
307 307
         } else {
308 308
             $breadcrumbs[] = I18N::translate('Edit');
309
-            $title         .= ' — ' . I18N::translate('Edit');
309
+            $title .= ' — ' . I18N::translate('Edit');
310 310
         }
311 311
 
312 312
         return $this->viewResponse('admin/location-edit', [
@@ -734,7 +734,7 @@  discard block
 block discarded – undo
734 734
 
735 735
         foreach ($places as $place) {
736 736
             $location = new Location($place['fqpn']);
737
-            $new   = !$location->exists();
737
+            $new = !$location->exists();
738 738
 
739 739
             if (($options === 'update' && $new) || ($options === 'add' && !$new)) {
740 740
                 continue;
Please login to merge, or discard this patch.