Passed
Push — master ( 5f1b38...884ee8 )
by Greg
06:36
created
app/Http/Controllers/AdminTreesController.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -400,10 +400,10 @@
 block discarded – undo
400 400
     }
401 401
 
402 402
     /**
403
-      * @param ServerRequestInterface $request
404
-      *
405
-      * @return ResponseInterface
406
-      */
403
+     * @param ServerRequestInterface $request
404
+     *
405
+     * @return ResponseInterface
406
+     */
407 407
     public function duplicates(ServerRequestInterface $request): ResponseInterface
408 408
     {
409 409
         $tree = $request->getAttribute('tree');
Please login to merge, or discard this patch.
app/Http/Controllers/EditIndividualController.php 2 patches
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.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
         $tree = $request->getAttribute('tree');
78 78
         assert($tree instanceof Tree);
79 79
 
80
-        $xref   = $request->getParsedBody()['xref'];
80
+        $xref = $request->getParsedBody()['xref'];
81 81
 
82 82
         $individual = Individual::getInstance($xref, $tree);
83 83
 
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
         $tree = $request->getAttribute('tree');
144 144
         assert($tree instanceof Tree);
145 145
 
146
-        $xref   = $request->getQueryParams()['xref'];
146
+        $xref = $request->getQueryParams()['xref'];
147 147
         $individual = Individual::getInstance($xref, $tree);
148 148
         Auth::checkIndividualAccess($individual, true);
149 149
 
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
         $tree = $request->getAttribute('tree');
180 180
         assert($tree instanceof Tree);
181 181
 
182
-        $xref   = $request->getParsedBody()['xref'];
182
+        $xref = $request->getParsedBody()['xref'];
183 183
         $individual = Individual::getInstance($xref, $tree);
184 184
         Auth::checkIndividualAccess($individual, true);
185 185
 
Please login to merge, or discard this patch.