Passed
Push — main ( c808ff...4e47c4 )
by Jonathan
13:05
created
app/Module/GeoDispersion/Services/GeoAnalysisDataService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -74,14 +74,14 @@
 block discarded – undo
74 74
 
75 75
         return $query_individuals->unionAll($query_families)
76 76
             ->get()->pluck('g_gedcom')
77
-            ->flatMap(static function (string $gedcom): array {
77
+            ->flatMap(static function(string $gedcom): array {
78 78
                 preg_match_all('/\n2 PLAC (.+)/', $gedcom, $matches);
79 79
                 return $matches[1] ?? [];
80 80
             })
81 81
             ->sort(I18N::comparator())->reverse()
82
-            ->mapWithKeys(static function (string $place): array {
82
+            ->mapWithKeys(static function(string $place): array {
83 83
                 $place_array = array_reverse(array_filter(array_map('trim', explode(",", $place))));
84
-                return [ count($place_array) => $place_array ];
84
+                return [count($place_array) => $place_array];
85 85
             })
86 86
             ->sortKeys()
87 87
             ->last() ?? [];
Please login to merge, or discard this patch.
app/Module/MiscExtensions/MiscExtensionsModule.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -69,9 +69,9 @@  discard block
 block discarded – undo
69 69
     public function boot(): void
70 70
     {
71 71
         $this->traitBoot();
72
-        View::registerCustomView('::modules/privacy-policy/page', $this->name() . '::privacy-policy');
72
+        View::registerCustomView('::modules/privacy-policy/page', $this->name().'::privacy-policy');
73 73
 
74
-        if ((int) $this->getPreference('MAJ_USE_LEGACY_XREF') === 1) {
74
+        if ((int)$this->getPreference('MAJ_USE_LEGACY_XREF') === 1) {
75 75
             Registry::xrefFactory(new LegacyXrefFactory());
76 76
         }
77 77
     }
@@ -82,11 +82,11 @@  discard block
 block discarded – undo
82 82
      */
83 83
     public function loadRoutes(Map $router): void
84 84
     {
85
-        $router->attach('', '', static function (Map $router): void {
85
+        $router->attach('', '', static function(Map $router): void {
86 86
 
87
-            $router->attach('', '/module-maj/misc', static function (Map $router): void {
87
+            $router->attach('', '/module-maj/misc', static function(Map $router): void {
88 88
 
89
-                $router->attach('', '/config/admin', static function (Map $router): void {
89
+                $router->attach('', '/config/admin', static function(Map $router): void {
90 90
 
91 91
                     $router->get(AdminConfigPage::class, '', AdminConfigPage::class);
92 92
                     $router->post(AdminConfigAction::class, '', AdminConfigAction::class);
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
     public function listSubscribedHooks(): array
121 121
     {
122 122
         return [
123
-            app()->makeWith(TitlesCardHook::class, [ 'module' => $this ])
123
+            app()->makeWith(TitlesCardHook::class, ['module' => $this])
124 124
         ];
125 125
     }
126 126
 }
Please login to merge, or discard this patch.
app/Module/MiscExtensions/Factories/LegacyXrefFactory.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
             return parent::generate($prefix, $suffix);
55 55
         }
56 56
 
57
-        $setting_name = 'MAJ_MISC_XREF_NEXT_' . $prefix;
57
+        $setting_name = 'MAJ_MISC_XREF_NEXT_'.$prefix;
58 58
         // Lock the row, so that only one new XREF may be generated at a time.
59 59
         DB::table('gedcom_setting')
60 60
             ->where('gedcom_id', '=', $tree->id())
@@ -64,13 +64,13 @@  discard block
 block discarded – undo
64 64
 
65 65
         $increment = 1.0;
66 66
         do {
67
-            $num = (int) $tree->getPreference($setting_name) + (int) $increment;
67
+            $num = (int)$tree->getPreference($setting_name) + (int)$increment;
68 68
 
69 69
             // This exponential increment allows us to scan over large blocks of
70 70
             // existing data in a reasonable time.
71 71
             $increment *= 1.01;
72 72
 
73
-            $xref = $prefix . $num . $suffix;
73
+            $xref = $prefix.$num.$suffix;
74 74
 
75 75
             // Records may already exist with this sequence number.
76 76
             $already_used =
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
                 DB::table('change')->where('gedcom_id', '=', $tree->id())->where('xref', '=', $xref)->exists();
83 83
         } while ($already_used);
84 84
 
85
-        $tree->setPreference($setting_name, (string) $num);
85
+        $tree->setPreference($setting_name, (string)$num);
86 86
 
87 87
         return $xref;
88 88
     }
Please login to merge, or discard this patch.
app/Module/MiscExtensions/Http/RequestHandlers/AdminConfigAction.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
         );
62 62
         $this->module->setPreference(
63 63
             'MAJ_DISPLAY_CNIL',
64
-            (string) Validator::parsedBody($request)->integer('MAJ_DISPLAY_CNIL', 0)
64
+            (string)Validator::parsedBody($request)->integer('MAJ_DISPLAY_CNIL', 0)
65 65
         );
66 66
         $this->module->setPreference(
67 67
             'MAJ_CNIL_REFERENCE',
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
         );
70 70
         $this->module->setPreference(
71 71
             'MAJ_USE_LEGACY_XREF',
72
-            (string) Validator::parsedBody($request)->integer('MAJ_USE_LEGACY_XREF', 0)
72
+            (string)Validator::parsedBody($request)->integer('MAJ_USE_LEGACY_XREF', 0)
73 73
         );
74 74
 
75 75
         FlashMessages::addMessage(
Please login to merge, or discard this patch.
app/Module/IsSourced/Hooks/IsSourcedStatusHook.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
     public function recordNameAppend(GedcomRecord $record, bool $use_long = false, string $size = ''): string
66 66
     {
67 67
         if ($use_long && $record instanceof Individual) {
68
-            return view($this->module()->name() . '::hooks/name-append', [
68
+            return view($this->module()->name().'::hooks/name-append', [
69 69
                 'module_name'           =>  $this->module()->name(),
70 70
                 'source_status_service' =>  $this->source_status_service,
71 71
                 'individual'            =>  $record,
Please login to merge, or discard this patch.