Passed
Push — master ( e25212...5afbc5 )
by Greg
05:14
created
app/Services/TreeService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
      */
125 125
     public function findByName($name): ?Tree
126 126
     {
127
-        return $this->all()->first(static function (Tree $tree) use ($name): bool {
127
+        return $this->all()->first(static function (Tree $tree) use ($name) : bool {
128 128
             return $tree->name() === $name;
129 129
         });
130 130
     }
Please login to merge, or discard this patch.
app/Http/Controllers/AdminTreesController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -369,7 +369,7 @@
 block discarded – undo
369 369
         return '<b title="' . GedcomTag::getLabel($type) . '">' . $type . '</b>';
370 370
     }
371 371
 
372
-   /**
372
+    /**
373 373
      * @param ServerRequestInterface $request
374 374
      *
375 375
      * @return ResponseInterface
Please login to merge, or discard this patch.