Passed
Push — analysis-q56j02 ( 706287 )
by Greg
12:36 queued 04:27
created
app/Http/Controllers/PendingChangesController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
     {
99 99
         $url       = $request->get('url', '');
100 100
         $xref      = $request->get('xref', '');
101
-        $change_id = (int)$request->get('change_id');
101
+        $change_id = (int) $request->get('change_id');
102 102
 
103 103
         $changes = Database::prepare(
104 104
             "SELECT change_id, xref, old_gedcom, new_gedcom" .
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
     {
205 205
         $url       = $request->get('url', '');
206 206
         $xref      = $request->get('xref', '');
207
-        $change_id = (int)$request->get('change_id');
207
+        $change_id = (int) $request->get('change_id');
208 208
 
209 209
         // Reject a change, and subsequent changes to the same record
210 210
         Database::prepare(
Please login to merge, or discard this patch.
app/Services/UpgradeService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
     {
74 74
         $latest_version = $this->fetchLatestVersion();
75 75
 
76
-        list(, , $url) = explode('|', $latest_version . '||');
76
+        list(,, $url) = explode('|', $latest_version . '||');
77 77
 
78 78
         return $url;
79 79
     }
Please login to merge, or discard this patch.
app/Date/JulianDate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
         }
75 75
 
76 76
         if (preg_match('/^(\d+) B\.C\.$/', $year, $match)) {
77
-            return - (int) $match[1];
77
+            return -(int) $match[1];
78 78
         }
79 79
 
80 80
         return (int) $year;
Please login to merge, or discard this patch.
app/Theme/AbstractTheme.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1793,7 +1793,7 @@
 block discarded – undo
1793 1793
     public function menuSearchPhonetic(): Menu
1794 1794
     {
1795 1795
         /* I18N: search using “sounds like”, rather than exact spelling */
1796
-        return new Menu(I18N::translate('Phonetic search'), route('search-phonetic', ['ged'    => $this->tree->getName(), 'action' => 'soundex',]), 'menu-search-soundex', ['rel' => 'nofollow']);
1796
+        return new Menu(I18N::translate('Phonetic search'), route('search-phonetic', ['ged'    => $this->tree->getName(), 'action' => 'soundex', ]), 'menu-search-soundex', ['rel' => 'nofollow']);
1797 1797
     }
1798 1798
 
1799 1799
     /**
Please login to merge, or discard this patch.
app/Database.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -224,7 +224,7 @@
 block discarded – undo
224 224
     public static function updateSchema($namespace, $schema_name, $target_version): bool
225 225
     {
226 226
         try {
227
-            $current_version = (int)Site::getPreference($schema_name);
227
+            $current_version = (int) Site::getPreference($schema_name);
228 228
         } catch (PDOException $ex) {
229 229
             DebugBar::addThrowable($ex);
230 230
 
Please login to merge, or discard this patch.
app/Http/Controllers/AdminController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
      */
231 231
     public function changesLogData(Request $request): Response
232 232
     {
233
-        list($select, , $where, $args1) = $this->changesQuery($request);
233
+        list($select,, $where, $args1) = $this->changesQuery($request);
234 234
         list($order_by, $limit, $args2) = $this->dataTablesPagination($request);
235 235
 
236 236
         $rows = Database::prepare(
@@ -306,7 +306,7 @@  discard block
 block discarded – undo
306 306
      */
307 307
     public function changesLogDownload(Request $request): Response
308 308
     {
309
-        list($select, , $where, $args) = $this->changesQuery($request);
309
+        list($select,, $where, $args) = $this->changesQuery($request);
310 310
 
311 311
         $rows = Database::prepare($select . $where)->execute($args)->fetchAll();
312 312
 
Please login to merge, or discard this patch.
app/Stats.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5374,7 +5374,7 @@
 block discarded – undo
5374 5374
         foreach ($rows as $row) {
5375 5375
             $family = Family::getInstance($row->id, $this->tree);
5376 5376
             if ($family->canShow()) {
5377
-                $total  = (int) $row->tot;
5377
+                $total = (int) $row->tot;
5378 5378
 
5379 5379
                 if ($type === 'list') {
5380 5380
                     $top10[] = '<li><a href="' . e($family->url()) . '">' . $family->getFullName() . '</a> - ' . I18N::plural('%s grandchild', '%s grandchildren', $total, I18N::number($total));
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
@@ -215,7 +215,7 @@
 block discarded – undo
215 215
                     <li class="wt-initials-list-item">
216 216
                         <?php if ($count > 0): ?>
217 217
                             <a href="<?= e(route($route, ['alpha' => $letter, 'ged' => $tree->getName()])) ?>" class="wt-initial<?= $letter === $alpha ? ' active' : ''?> '" title="<?= I18N::number($count) ?>"><?= $this->surnameInitial((string) $letter) ?></a>
218
-                        <?php else: ?>
218
+                        <?php else : ?>
219 219
                             <span class="wt-initial text-muted"><?= $this->surnameInitial((string) $letter) ?></span>
220 220
 
221 221
                         <?php endif ?>
Please login to merge, or discard this patch.
app/Http/Controllers/AdminTreesController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -414,7 +414,7 @@
 block discarded – undo
414 414
         ];
415 415
 
416 416
         $access_level = $access_levels[$privatize_export];
417
-        $encoding     =  $convert ? 'ANSI' : 'UTF-8';
417
+        $encoding     = $convert ? 'ANSI' : 'UTF-8';
418 418
 
419 419
         // What to call the downloaded file
420 420
         $download_filename = $tree->getName();
Please login to merge, or discard this patch.