Passed
Push — develop ( eb6d2a...994832 )
by Greg
28:50 queued 19:50
created
app/Services/ModuleService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -694,7 +694,7 @@  discard block
 block discarded – undo
694 694
         } catch (Throwable $exception) {
695 695
             $module_name = basename(dirname($filename));
696 696
             $message     = 'Fatal error in module: ' . $module_name;
697
-            $message     .= '<br>' . $exception;
697
+            $message .= '<br>' . $exception;
698 698
             FlashMessages::addMessage($message, 'danger');
699 699
         }
700 700
         return null;
@@ -805,7 +805,7 @@  discard block
 block discarded – undo
805 805
     public function findByName(string $module_name, bool $include_disabled = false): ?ModuleInterface
806 806
     {
807 807
         return $this->all($include_disabled)
808
-            ->first(static function (ModuleInterface $module) use ($module_name): bool {
808
+            ->first(static function (ModuleInterface $module) use ($module_name) : bool {
809 809
                 return $module->name() === $module_name;
810 810
             });
811 811
     }
Please login to merge, or discard this patch.
app/Http/RequestHandlers/LinkSpouseToIndividualPage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
 
58 58
         // Create a dummy family record, so we can create new/empty facts.
59 59
         $dummy = Factory::family()->new('', '0 @@ FAM', null, $tree);
60
-        $facts  = [
60
+        $facts = [
61 61
             'f' => [
62 62
                 new Fact('1 MARR', $dummy, ''),
63 63
             ],
Please login to merge, or discard this patch.