Passed
Push — dependabot/composer/guzzlehttp... ( 4dd343 )
by
unknown
22:51
created
app/Module/IndividualFactsTabModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
             ->flatten();
127 127
 
128 128
         // Don't show family meta-data tags
129
-        $exclude_facts  = new Collection(['FAM:CHAN', 'FAM:_UID']);
129
+        $exclude_facts = new Collection(['FAM:CHAN', 'FAM:_UID']);
130 130
         // Don't show tags that are shown in tabs or sidebars
131 131
         $exclude_facts = $exclude_facts->merge($sidebar_facts)->merge($tab_facts);
132 132
 
Please login to merge, or discard this patch.
app/Factories/SharedNoteFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
      *
90 90
      * @return SharedNote
91 91
      */
92
-    public function new(string $xref, string $gedcom, ?string $pending, Tree $tree): SharedNote
92
+    public function new(string $xref, string $gedcom, ?string $pending, Tree $tree) : SharedNote
93 93
     {
94 94
         return new SharedNote($xref, $gedcom, $pending, $tree);
95 95
     }
Please login to merge, or discard this patch.
app/Contracts/SharedNoteFactoryInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,5 +59,5 @@
 block discarded – undo
59 59
      *
60 60
      * @return SharedNote
61 61
      */
62
-    public function new(string $xref, string $gedcom, ?string $pending, Tree $tree): SharedNote;
62
+    public function new(string $xref, string $gedcom, ?string $pending, Tree $tree) : SharedNote;
63 63
 }
Please login to merge, or discard this patch.
app/Report/ReportParserGenerate.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1090,7 +1090,7 @@
 block discarded – undo
1090 1090
                     } else {
1091 1091
                         $value = strip_tags(Registry::markdownFactory()->autolink($value, $this->tree), ['br']);
1092 1092
                     }
1093
-                    $value = strtr($value, [MarkdownFactory::BREAK => ' ']);
1093
+                    $value = strtr($value, [MarkdownFactory::break => ' ']);
1094 1094
                 }
1095 1095
 
1096 1096
                 if (!empty($attrs['truncate'])) {
Please login to merge, or discard this patch.
app/Services/LocalizationService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
         'hu' => ['CS' => 'CS', 'DZS' => 'DZS', 'DZ' => 'DZ', 'GY' => 'GY', 'LY' => 'LY', 'NY' => 'NY', 'SZ' => 'SZ', 'TY' => 'TY', 'ZS' => 'ZS'],
95 95
         'nl' => ['IJ' => 'IJ'],
96 96
         'nn' => ['AA' => 'Å'],
97
-        'sk' => ['DZ' => 'DZ', 'DŽ' => 'DŽ','CH' => 'CH'],
97
+        'sk' => ['DZ' => 'DZ', 'DŽ' => 'DŽ', 'CH' => 'CH'],
98 98
     ];
99 99
 
100 100
     /**
Please login to merge, or discard this patch.