Passed
Push — validation ( 1c78f5...5db15e )
by Greg
08:11
created
app/Http/RequestHandlers/ReorderFamiliesAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
         }
76 76
 
77 77
         // Sort the facts
78
-        $callback = static fn (string $x, string $y): int => array_search($x, $order, true) <=> array_search($y, $order, true);
78
+        $callback = static fn(string $x, string $y): int => array_search($x, $order, true) <=> array_search($y, $order, true);
79 79
         uksort($sort_facts, $callback);
80 80
 
81 81
         // Merge the facts
Please login to merge, or discard this patch.
app/Http/RequestHandlers/ReorderChildrenAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
         }
76 76
 
77 77
         // Sort the facts
78
-        $callback = static fn (string $x, string $y): int => array_search($x, $order, true) <=> array_search($y, $order, true);
78
+        $callback = static fn(string $x, string $y): int => array_search($x, $order, true) <=> array_search($y, $order, true);
79 79
         uksort($sort_facts, $callback);
80 80
 
81 81
         // Merge the facts
Please login to merge, or discard this patch.
app/Module/LifespansChartModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -267,7 +267,7 @@
 block discarded – undo
267 267
 
268 268
         $lifespans = $this->layoutIndividuals($individuals);
269 269
 
270
-        $callback = static fn (int $carry, object $item): int => max($carry, $item->row);
270
+        $callback = static fn(int $carry, object $item): int => max($carry, $item->row);
271 271
         $max_rows = array_reduce($lifespans, $callback, 0);
272 272
 
273 273
         $count    = count($xrefs);
Please login to merge, or discard this patch.
app/I18N.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -324,7 +324,7 @@  discard block
 block discarded – undo
324 324
 
325 325
             self::$language = $module_service
326 326
                 ->findByInterface(ModuleLanguageInterface::class)
327
-                ->first(fn (ModuleLanguageInterface $module): bool => $module->locale()->languageTag() === $code);
327
+                ->first(fn(ModuleLanguageInterface $module): bool => $module->locale()->languageTag() === $code);
328 328
         }
329 329
 
330 330
         // Create a translator
@@ -566,10 +566,10 @@  discard block
 block discarded – undo
566 566
     public static function comparator(): Closure
567 567
     {
568 568
         if (self::$collator instanceof Collator) {
569
-            return static fn (string $x, string $y): int => (int) self::$collator->compare($x, $y);
569
+            return static fn(string $x, string $y): int => (int) self::$collator->compare($x, $y);
570 570
         }
571 571
 
572
-        return static fn (string $x, string $y): int => strcmp(self::strtolower($x), self::strtolower($y));
572
+        return static fn(string $x, string $y): int => strcmp(self::strtolower($x), self::strtolower($y));
573 573
     }
574 574
 
575 575
 
Please login to merge, or discard this patch.
app/Statistics/Google/ChartMortality.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
         string $color_dead = null
58 58
     ): string {
59 59
         $color_living = $color_living ?? '#ffffff';
60
-        $color_dead   = $color_dead   ?? '#cccccc';
60
+        $color_dead   = $color_dead ?? '#cccccc';
61 61
 
62 62
         $data = [
63 63
             [
Please login to merge, or discard this patch.
app/Http/RequestHandlers/EditFactPage.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
         $record = Auth::checkRecordAccess($record, true);
75 75
 
76 76
         // Find the fact to edit
77
-        $fact = $record->facts()->first(fn (Fact $fact): bool => $fact->id() === $fact_id && $fact->canEdit());
77
+        $fact = $record->facts()->first(fn(Fact $fact): bool => $fact->id() === $fact_id && $fact->canEdit());
78 78
 
79 79
         if ($fact === null) {
80 80
             return redirect($record->url());
Please login to merge, or discard this patch.
app/Services/MediaFileService.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -298,9 +298,9 @@  discard block
 block discarded – undo
298 298
         try {
299 299
             $files = $filesystem
300 300
                 ->listContents($folder, $subfolders)
301
-                ->filter(fn (StorageAttributes $attributes): bool => $attributes->isFile())
302
-                ->filter(fn (StorageAttributes $attributes): bool => !$this->ignorePath($attributes->path()))
303
-                ->map(fn (StorageAttributes $attributes): string => $attributes->path())
301
+                ->filter(fn(StorageAttributes $attributes): bool => $attributes->isFile())
302
+                ->filter(fn(StorageAttributes $attributes): bool => !$this->ignorePath($attributes->path()))
303
+                ->map(fn(StorageAttributes $attributes): string => $attributes->path())
304 304
                 ->toArray();
305 305
         } catch (FilesystemException $ex) {
306 306
             $files = [];
@@ -348,9 +348,9 @@  discard block
 block discarded – undo
348 348
     {
349 349
         $folders = Registry::filesystem()->media($tree)
350 350
             ->listContents('', FilesystemReader::LIST_DEEP)
351
-            ->filter(fn (StorageAttributes $attributes): bool => $attributes->isDir())
352
-            ->filter(fn (StorageAttributes $attributes): bool => !$this->ignorePath($attributes->path()))
353
-            ->map(fn (StorageAttributes $attributes): string => $attributes->path())
351
+            ->filter(fn(StorageAttributes $attributes): bool => $attributes->isDir())
352
+            ->filter(fn(StorageAttributes $attributes): bool => !$this->ignorePath($attributes->path()))
353
+            ->map(fn(StorageAttributes $attributes): string => $attributes->path())
354 354
             ->toArray();
355 355
 
356 356
         return new Collection($folders);
@@ -395,9 +395,9 @@  discard block
 block discarded – undo
395 395
         foreach ($media_roots as $media_folder) {
396 396
             $tmp = $data_filesystem
397 397
                 ->listContents($media_folder, FilesystemReader::LIST_DEEP)
398
-                ->filter(fn (StorageAttributes $attributes): bool => $attributes->isDir())
399
-                ->filter(fn (StorageAttributes $attributes): bool => !$this->ignorePath($attributes->path()))
400
-                ->map(fn (StorageAttributes $attributes): string => $attributes->path() . '/')
398
+                ->filter(fn(StorageAttributes $attributes): bool => $attributes->isDir())
399
+                ->filter(fn(StorageAttributes $attributes): bool => !$this->ignorePath($attributes->path()))
400
+                ->map(fn(StorageAttributes $attributes): string => $attributes->path() . '/')
401 401
                 ->toArray();
402 402
 
403 403
             $disk_folders = $disk_folders->concat($tmp);
Please login to merge, or discard this patch.
app/Date.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -457,7 +457,7 @@
 block discarded – undo
457 457
     public function addYears(int $years, string $qualifier = ''): Date
458 458
     {
459 459
         $tmp               = clone $this;
460
-        $tmp->date1->year  += $years;
460
+        $tmp->date1->year += $years;
461 461
         $tmp->date1->month = 0;
462 462
         $tmp->date1->day   = 0;
463 463
         $tmp->date1->setJdFromYmd();
Please login to merge, or discard this patch.
app/Module/FanChartModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -431,7 +431,7 @@
 block discarded – undo
431 431
                     ]);
432 432
 
433 433
                     $text_lines = array_map(
434
-                        fn (string $line): string => $this->fitTextToPixelWidth($line, $max_text_length),
434
+                        fn(string $line): string => $this->fitTextToPixelWidth($line, $max_text_length),
435 435
                         $text_lines
436 436
                     );
437 437
 
Please login to merge, or discard this patch.