Passed
Push — analysis-z4j9Ae ( f10e19 )
by Greg
11:08 queued 02:38
created
app/Services/UpgradeService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
     {
77 77
         $latest_version = $this->fetchLatestVersion();
78 78
 
79
-        [, , $url] = explode('|', $latest_version . '||');
79
+        [,, $url] = explode('|', $latest_version . '||');
80 80
 
81 81
         return $url;
82 82
     }
Please login to merge, or discard this patch.
app/Module/TopPageViewsModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
 
71 71
         $top10 = DB::table('hit_counter')
72 72
             ->where('gedcom_id', '=', $tree->id())
73
-            ->whereIn('page_name', ['individual.php','family.php','source.php','repo.php','note.php','mediaviewer.php'])
73
+            ->whereIn('page_name', ['individual.php', 'family.php', 'source.php', 'repo.php', 'note.php', 'mediaviewer.php'])
74 74
             ->orderByDesc('page_count')
75 75
             ->limit((int) $num)
76 76
             ->pluck('page_count', 'page_parameter');
Please login to merge, or discard this patch.
app/Source.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 {
29 29
     public const RECORD_TYPE = 'SOUR';
30 30
 
31
-    protected const ROUTE_NAME  = 'source';
31
+    protected const ROUTE_NAME = 'source';
32 32
 
33 33
     /**
34 34
      * A closure which will create a record from a database row.
Please login to merge, or discard this patch.
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/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/Module/FrequentlyAskedQuestionsModule.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -399,19 +399,19 @@
 block discarded – undo
399 399
     private function faqsExist(Tree $tree, string $language): bool
400 400
     {
401 401
         return DB::table('block')
402
-             ->join('block_setting', 'block_setting.block_id', '=', 'block.block_id')
403
-             ->where('module_name', '=', $this->name())
404
-             ->where('setting_name', '=', 'languages')
405
-             ->where(function (Builder $query) use ($tree): void {
406
-                 $query
407
-                     ->whereNull('gedcom_id')
408
-                     ->orWhere('gedcom_id', '=', $tree->id());
409
-             })
410
-             ->select(['setting_value AS languages'])
411
-             ->get()
412
-             ->filter(function (stdClass $faq) use ($language): bool {
413
-                 return $faq->languages === '' || in_array($language, explode(',', $faq->languages));
414
-             })
402
+                ->join('block_setting', 'block_setting.block_id', '=', 'block.block_id')
403
+                ->where('module_name', '=', $this->name())
404
+                ->where('setting_name', '=', 'languages')
405
+                ->where(function (Builder $query) use ($tree): void {
406
+                    $query
407
+                        ->whereNull('gedcom_id')
408
+                        ->orWhere('gedcom_id', '=', $tree->id());
409
+                })
410
+                ->select(['setting_value AS languages'])
411
+                ->get()
412
+                ->filter(function (stdClass $faq) use ($language): bool {
413
+                    return $faq->languages === '' || in_array($language, explode(',', $faq->languages));
414
+                })
415 415
             ->isNotEmpty();
416 416
     }
417 417
 }
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/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.