Passed
Push — analysis-qyZvaj ( fddfc6 )
by Greg
06:58
created
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/Module/PedigreeChartModule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -416,7 +416,7 @@  discard block
 block discarded – undo
416 416
             $html = sprintf('<div id="childarrow"><a href="#" class="menuselect %s"></a><div id="childbox-pedigree">', $this->arrows->menu);
417 417
 
418 418
             foreach ($families as $family) {
419
-                $html   .= '<span class="name1">' . I18N::translate('Family') . '</span>';
419
+                $html .= '<span class="name1">' . I18N::translate('Family') . '</span>';
420 420
                 $spouse = $family->getSpouse($root);
421 421
                 if ($spouse) {
422 422
                     $html .= '<a class="name1" href="' . e($this->chartUrl($spouse, ['generations' => $generations, 'orientation' => $orientation])) . '">' . $spouse->getFullName() . '</a>';
@@ -462,7 +462,7 @@  discard block
 block discarded – undo
462 462
         $html = '';
463 463
         if ($chart_has_ancestors) {
464 464
             if ($this->nodes[$index]['indi'] && $this->nodes[$index]['indi']->getChildFamilies()) {
465
-                $html         .= '<div class="ancestorarrow">';
465
+                $html .= '<div class="ancestorarrow">';
466 466
                 $rootParentId = 1;
467 467
                 if ($index > (int) ($this->treesize / 2) + (int) ($this->treesize / 4)) {
468 468
                     $rootParentId++;
Please login to merge, or discard this patch.
app/Module/ChartsBlockModule.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
                         'generations' => 3,
96 96
                         'layout'      => PedigreeChartModule::PORTRAIT,
97 97
                     ]);
98
-                    $content   = view('modules/charts/chart', [
98
+                    $content = view('modules/charts/chart', [
99 99
                         'block_id'  => $block_id,
100 100
                         'chart_url' => $chart_url,
101 101
                     ]);
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
                         'generations' => 2,
111 111
                         'chart_style' => DescendancyChartModule::CHART_STYLE_LIST,
112 112
                     ]);
113
-                    $content   = view('modules/charts/chart', [
113
+                    $content = view('modules/charts/chart', [
114 114
                         'block_id'  => $block_id,
115 115
                         'chart_url' => $chart_url,
116 116
                     ]);
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
                         'ajax'        => true,
125 125
                         'generations' => 2,
126 126
                     ]);
127
-                    $content   = view('modules/charts/chart', [
127
+                    $content = view('modules/charts/chart', [
128 128
                         'block_id'  => $block_id,
129 129
                         'chart_url' => $chart_url,
130 130
                     ]);
Please login to merge, or discard this patch.
app/Http/Controllers/AdminController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -560,7 +560,7 @@
 block discarded – undo
560 560
         $data = array_map(function (string $thumbnail): array {
561 561
             $original = $this->findOriginalFileFromThumbnail($thumbnail);
562 562
 
563
-            $original_url  = route('unused-media-thumbnail', [
563
+            $original_url = route('unused-media-thumbnail', [
564 564
                 'folder' => dirname($original),
565 565
                 'file'   => basename($original),
566 566
                 'w'      => 100,
Please login to merge, or discard this patch.
app/Functions/FunctionsExport.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -103,11 +103,11 @@
 block discarded – undo
103 103
         $record = GedcomRecord::getInstance('HEAD', $tree);
104 104
         $fact = $record->getFirstFact('COPR');
105 105
         if ($fact instanceof Fact) {
106
-            $COPR = "\n1 COPR " .$fact->value();
106
+            $COPR = "\n1 COPR " . $fact->value();
107 107
         }
108
-        $fact   = $record->getFirstFact('LANG');
108
+        $fact = $record->getFirstFact('LANG');
109 109
         if ($fact instanceof Fact) {
110
-            $LANG = "\n1 LANG " .$fact->value();
110
+            $LANG = "\n1 LANG " . $fact->value();
111 111
         }
112 112
         // Link to actual SUBM/SUBN records, if they exist
113 113
         $subn = DB::table('other')
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/Http/Controllers/Admin/LocationController.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -519,7 +519,7 @@
 block discarded – undo
519 519
         // ... and process the differences
520 520
         $inserted = 0;
521 521
         if ($diff->isNotEmpty()) {
522
-            $nextRecordId    = 1 + (int) DB::table('placelocation')->max('pl_id');
522
+            $nextRecordId = 1 + (int) DB::table('placelocation')->max('pl_id');
523 523
 
524 524
             foreach ($diff as $place) {
525 525
                 // For Westminster, London, England, we must also create England and London, England
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -342,9 +342,11 @@
 block discarded – undo
342 342
             'fqpn',
343 343
         ];
344 344
 
345
-        if ($serverfile !== '') {  // first choice is file on server
345
+        if ($serverfile !== '') {
346
+// first choice is file on server
346 347
             $filename = WT_DATA_DIR . 'places/' . $serverfile;
347
-        } elseif ($_FILES['localfile']['error'] === UPLOAD_ERR_OK) { // 2nd choice is local file
348
+        } elseif ($_FILES['localfile']['error'] === UPLOAD_ERR_OK) {
349
+// 2nd choice is local file
348 350
             $filename = $_FILES['localfile']['tmp_name'];
349 351
         }
350 352
 
Please login to merge, or discard this patch.
app/Statistics/Google/ChartIndividual.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
         $color_from = $color_from ?? $chart_color1;
50 50
         $color_to   = $color_to ?? $chart_color2;
51 51
 
52
-        $sizes    = explode('x', $size);
52
+        $sizes = explode('x', $size);
53 53
 
54 54
         if ($tot_indi === 0) {
55 55
             return '';
Please login to merge, or discard this patch.
app/Statistics/Google/ChartAge.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@
 block discarded – undo
135 135
             $decades .= '|' . I18N::number($i);
136 136
         }
137 137
 
138
-        $chxl  .= '1:||' . I18N::translate('century') . '|2:' . $decades . '|3:||' . I18N::translate('Age') . '|';
138
+        $chxl .= '1:||' . I18N::translate('century') . '|2:' . $decades . '|3:||' . I18N::translate('Age') . '|';
139 139
         $title = I18N::translate('Average age related to death century');
140 140
 
141 141
         if (\count($rows) > 6 || mb_strlen($title) < 30) {
Please login to merge, or discard this patch.
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -65,11 +65,11 @@  discard block
 block discarded – undo
65 65
                     ->on('birth.d_file', '=', 'i_file')
66 66
                     ->on('birth.d_gid', '=', 'i_id');
67 67
             })
68
-           ->join('dates AS death', function (JoinClause $join): void {
69
-               $join
68
+            ->join('dates AS death', function (JoinClause $join): void {
69
+                $join
70 70
                     ->on('death.d_file', '=', 'i_file')
71 71
                     ->on('death.d_gid', '=', 'i_id');
72
-           })
72
+            })
73 73
             ->where('i_file', '=', $this->tree->id())
74 74
             ->where('birth.d_fact', '=', 'BIRT')
75 75
             ->where('death.d_fact', '=', 'DEAT')
@@ -162,10 +162,10 @@  discard block
 block discarded – undo
162 162
         }
163 163
 
164 164
         $chart_url = 'https://chart.googleapis.com/chart?cht=bvg&amp;chs=' . $sizes[0] . 'x' . $sizes[1]
165
-             . '&amp;chm=D,FF0000,2,0,3,1|N*f1*,000000,0,-1,11,1|N*f1*,000000,1,-1,11,1&amp;chf=bg,s,ffffff00|c,s,ffffff00&amp;chtt='
166
-             . rawurlencode($chtt) . '&amp;chd=' . $chd . '&amp;chco=0000FF,FFA0CB,FF0000&amp;chbh=20,3&amp;chxt=x,x,y,y&amp;chxl='
167
-             . rawurlencode($chxl) . '&amp;chdl='
168
-             . rawurlencode(I18N::translate('Males') . '|' . I18N::translate('Females') . '|' . I18N::translate('Average age at death'));
165
+                . '&amp;chm=D,FF0000,2,0,3,1|N*f1*,000000,0,-1,11,1|N*f1*,000000,1,-1,11,1&amp;chf=bg,s,ffffff00|c,s,ffffff00&amp;chtt='
166
+                . rawurlencode($chtt) . '&amp;chd=' . $chd . '&amp;chco=0000FF,FFA0CB,FF0000&amp;chbh=20,3&amp;chxt=x,x,y,y&amp;chxl='
167
+                . rawurlencode($chxl) . '&amp;chdl='
168
+                . rawurlencode(I18N::translate('Males') . '|' . I18N::translate('Females') . '|' . I18N::translate('Average age at death'));
169 169
 
170 170
         return view(
171 171
             'statistics/other/chart-google',
Please login to merge, or discard this patch.