Completed
Push — test-actions ( 1ddbc5...ac9ea4 )
by Greg
21:05 queued 13:39
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.
resources/lang/en-US/messages.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1 1
 <?php return array (
2
-  '%H:%i:%s' => '%g:%i:%s %a',
3
-  '%j %F %Y' => '%F %j, %Y',
2
+    '%H:%i:%s' => '%g:%i:%s %a',
3
+    '%j %F %Y' => '%F %j, %Y',
4 4
 );
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.