Passed
Push — master ( ab039d...985793 )
by Greg
06:03
created
app/Statistics/Google/ChartMarriageAge.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -102,9 +102,9 @@
 block discarded – undo
102 102
             ->groupBy(['century', 'sex']);
103 103
 
104 104
         return $male->unionAll($female)
105
-           ->orderBy('century')
106
-           ->get()
107
-           ->all();
105
+            ->orderBy('century')
106
+            ->get()
107
+            ->all();
108 108
     }
109 109
 
110 110
     /**
Please login to merge, or discard this patch.
app/Http/Controllers/EditIndividualController.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -37,12 +37,12 @@
 block discarded – undo
37 37
 class EditIndividualController extends AbstractEditController
38 38
 {
39 39
     /**
40
-      * Add a child to an existing individual (creating a one-parent family).
41
-      *
42
-      * @param ServerRequestInterface $request
43
-      *
44
-      * @return ResponseInterface
45
-      */
40
+     * Add a child to an existing individual (creating a one-parent family).
41
+     *
42
+     * @param ServerRequestInterface $request
43
+     *
44
+     * @return ResponseInterface
45
+     */
46 46
     public function addChild(ServerRequestInterface $request): ResponseInterface
47 47
     {
48 48
         $tree = $request->getAttribute('tree');
Please login to merge, or discard this patch.
resources/lang/en-US/messages.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return array (
4
-  '%H:%i:%s' => '%g:%i:%s %a',
5
-  '%j %F %Y' => '%F %j, %Y',
4
+    '%H:%i:%s' => '%g:%i:%s %a',
5
+    '%j %F %Y' => '%F %j, %Y',
6 6
 );
Please login to merge, or discard this patch.
app/Module/PedigreeMapModule.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -255,9 +255,9 @@  discard block
 block discarded – undo
255 255
         $facts = $this->getPedigreeMapFacts($request, $this->chart_service);
256 256
 
257 257
         $geojson = [
258
-              'type'     => 'FeatureCollection',
259
-              'features' => [],
260
-          ];
258
+                'type'     => 'FeatureCollection',
259
+                'features' => [],
260
+            ];
261 261
 
262 262
         $sosa_points = [];
263 263
 
@@ -285,14 +285,14 @@  discard block
 block discarded – undo
285 285
                     // rather than generate polylines but the MarkerCluster library
286 286
                     // doesn't seem to like them
287 287
                     $polyline = [
288
-                          'points'  => [
289
-                              $sosa_points[$sosa_child],
290
-                              [$latitude, $longitude],
291
-                          ],
292
-                          'options' => [
293
-                              'color' => $color,
294
-                          ],
295
-                      ];
288
+                            'points'  => [
289
+                                $sosa_points[$sosa_child],
290
+                                [$latitude, $longitude],
291
+                            ],
292
+                            'options' => [
293
+                                'color' => $color,
294
+                            ],
295
+                        ];
296 296
                 }
297 297
                 $geojson['features'][] = [
298 298
                     'type'       => 'Feature',
Please login to merge, or discard this patch.