Passed
Pull Request — master (#2252)
by Rico
06:36
created
app/Http/Controllers/PendingChangesController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     {
95 95
         $url       = $request->get('url', '');
96 96
         $xref      = $request->get('xref', '');
97
-        $change_id = (int)$request->get('change_id');
97
+        $change_id = (int) $request->get('change_id');
98 98
 
99 99
         $changes = DB::table('change')
100 100
             ->where('gedcom_id', '=', $tree->id())
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
     {
192 192
         $url       = $request->get('url', '');
193 193
         $xref      = $request->get('xref', '');
194
-        $change_id = (int)$request->get('change_id');
194
+        $change_id = (int) $request->get('change_id');
195 195
 
196 196
         // Reject a change, and subsequent changes to the same record
197 197
         DB::table('change')
Please login to merge, or discard this patch.
app/Http/Controllers/ListController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -149,7 +149,7 @@
 block discarded – undo
149 149
                     'ged'      => $tree->name(),
150 150
                     'show_all' => 'yes',
151 151
                 ];
152
-                $show    = $request->get('show', 'surn');
152
+                $show = $request->get('show', 'surn');
153 153
             }
154 154
         } elseif ($surname) {
155 155
             $alpha    = $this->localization_service->initialLetter($surname); // so we can highlight the initial letter
Please login to merge, or discard this patch.
app/Module/PedigreeMapModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -291,7 +291,7 @@
 block discarded – undo
291 291
                     'provider' => 'openstreetmap',
292 292
                     'style'    => 'mapnik',
293 293
                 ];
294
-                self::$map_providers  = [
294
+                self::$map_providers = [
295 295
                     'openstreetmap' => [
296 296
                         'name'   => 'OpenStreetMap',
297 297
                         'styles' => ['mapnik' => 'Mapnik'],
Please login to merge, or discard this patch.
app/Http/Controllers/HomePageController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -657,7 +657,7 @@
 block discarded – undo
657 657
     private function filterActiveBlocks(Collection $blocks, Collection $active_blocks): Collection
658 658
     {
659 659
         return $blocks->map(function (string $block_name) use ($active_blocks): ?ModuleBlockInterface {
660
-            return $active_blocks->filter(function (ModuleInterface $block) use ($block_name): bool {
660
+            return $active_blocks->filter(function (ModuleInterface $block) use ($block_name) : bool {
661 661
                 return $block->name() === $block_name;
662 662
             })->first();
663 663
         })
Please login to merge, or discard this patch.
app/Census/CensusColumnNationality.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
         }
53 53
 
54 54
         // Did we emigrate or naturalise?
55
-        foreach ($individual->facts(['IMMI' ,'EMIG', 'NATU'], true) as $fact) {
55
+        foreach ($individual->facts(['IMMI', 'EMIG', 'NATU'], true) as $fact) {
56 56
             if (Date::compare($fact->date(), $this->date()) <= 0) {
57 57
                 $place = $fact->place()->gedcomName();
58 58
             }
Please login to merge, or discard this patch.
app/Statistics.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2591,7 +2591,7 @@
 block discarded – undo
2591 2591
         /** @var ModuleBlockInterface $module */
2592 2592
         $module = $this->module_service
2593 2593
             ->findByComponent('block', $this->tree, Auth::user())
2594
-            ->filter(function (ModuleInterface $module) use ($block): bool {
2594
+            ->filter(function (ModuleInterface $module) use ($block) : bool {
2595 2595
                 return $module->name() === $block && $module->name() !== 'html';
2596 2596
             })
2597 2597
             ->first();
Please login to merge, or discard this patch.
app/Module/FamilyBookChartModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -241,7 +241,7 @@
 block discarded – undo
241 241
                 echo '<table cellspacing="0" cellpadding="0" border="0" >';
242 242
                 foreach ($children as $i => $child) {
243 243
                     echo '<tr><td>';
244
-                    $kids    = $this->printDescendency($generation + 1, $child);
244
+                    $kids = $this->printDescendency($generation + 1, $child);
245 245
                     $numkids += $kids;
246 246
                     echo '</td>';
247 247
                     // Print the lines
Please login to merge, or discard this patch.
app/Module/ClippingsCartModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -256,7 +256,7 @@
 block discarded – undo
256 256
 
257 257
         // Create a source, to indicate the source of the data.
258 258
         $filetext .= "0 @WEBTREES@ SOUR\n1 TITL " . WT_BASE_URL . "\n";
259
-        $author   = $this->user_service->find((int) $tree->getPreference('CONTACT_USER_ID'));
259
+        $author = $this->user_service->find((int) $tree->getPreference('CONTACT_USER_ID'));
260 260
         if ($author !== null) {
261 261
             $filetext .= '1 AUTH ' . $author->realName() . "\n";
262 262
         }
Please login to merge, or discard this patch.
app/Functions/FunctionsPrintFacts.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -589,7 +589,7 @@  discard block
 block discarded – undo
589 589
         for ($j = 0; $j < $ct; $j++) {
590 590
             if (strpos($match[$j][1], '@') === false) {
591 591
                 $source = e($match[$j][1] . preg_replace('/\n\d CONT ?/', "\n", $match[$j][2]));
592
-                $data   .= '<div class="fact_SOUR"><span class="label">' . I18N::translate('Source') . ':</span> <span class="field" dir="auto">' . Filter::formatText($source, $tree) . '</span></div>';
592
+                $data .= '<div class="fact_SOUR"><span class="label">' . I18N::translate('Source') . ':</span> <span class="field" dir="auto">' . Filter::formatText($source, $tree) . '</span></div>';
593 593
             }
594 594
         }
595 595
         // Find source for each fact
@@ -607,7 +607,7 @@  discard block
 block discarded – undo
607 607
                     }
608 608
                     $srec      = substr($factrec, $spos1, $spos2 - $spos1);
609 609
                     $lt        = preg_match_all("/$nlevel \w+/", $srec, $matches);
610
-                    $data      .= '<div class="fact_SOUR">';
610
+                    $data .= '<div class="fact_SOUR">';
611 611
                     $elementID = Uuid::uuid4()->toString();
612 612
                     if ($tree->getPreference('EXPAND_SOURCES')) {
613 613
                         $plusminus = 'icon-minus';
Please login to merge, or discard this patch.