Passed
Pull Request — main (#5166)
by Bernard
07:26
created
app/Module/ListsMenuModule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,10 +81,10 @@
 block discarded – undo
81 81
      *
82 82
      * @return Menu|null
83 83
      */
84
-    public function getMenu(Tree $tree): Menu|null
84
+    public function getMenu(Tree $tree): Menu | null
85 85
     {
86 86
         $submenus = $this->module_service->findByComponent(ModuleListInterface::class, $tree, Auth::user())
87
-            ->map(static fn (ModuleListInterface $module): Menu|null => $module->listMenu($tree))
87
+            ->map(static fn (ModuleListInterface $module): Menu | null => $module->listMenu($tree))
88 88
             ->filter()
89 89
             ->sort(static fn (Menu $x, Menu $y): int => I18N::comparator()($x->getLabel(), $y->getLabel()));
90 90
 
Please login to merge, or discard this patch.
app/Module/TimelineChartModule.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
         // Find the requested individuals.
161 161
         $individuals = (new Collection($xrefs))
162 162
             ->uniqueStrict()
163
-            ->map(static fn (string $xref): Individual|null => Registry::individualFactory()->make($xref, $tree))
163
+            ->map(static fn (string $xref): Individual | null => Registry::individualFactory()->make($xref, $tree))
164 164
             ->filter()
165 165
             ->filter(GedcomRecord::accessFilter());
166 166
 
@@ -179,9 +179,9 @@  discard block
 block discarded – undo
179 179
             ]);
180 180
         }
181 181
 
182
-        $individuals = array_map(static fn (string $xref): Individual|null => Registry::individualFactory()->make($xref, $tree), $xrefs);
182
+        $individuals = array_map(static fn (string $xref): Individual | null => Registry::individualFactory()->make($xref, $tree), $xrefs);
183 183
 
184
-        $individuals = array_filter($individuals, static fn (Individual|null $individual): bool => $individual instanceof Individual && $individual->canShow());
184
+        $individuals = array_filter($individuals, static fn (Individual | null $individual): bool => $individual instanceof Individual && $individual->canShow());
185 185
 
186 186
         if ($ajax) {
187 187
             $this->layout = 'layouts/ajax';
@@ -237,9 +237,9 @@  discard block
 block discarded – undo
237 237
     protected function chart(Tree $tree, array $xrefs, int $scale): ResponseInterface
238 238
     {
239 239
         /** @var Individual[] $individuals */
240
-        $individuals = array_map(static fn (string $xref): Individual|null => Registry::individualFactory()->make($xref, $tree), $xrefs);
240
+        $individuals = array_map(static fn (string $xref): Individual | null => Registry::individualFactory()->make($xref, $tree), $xrefs);
241 241
 
242
-        $individuals = array_filter($individuals, static fn (Individual|null $individual): bool => $individual instanceof Individual && $individual->canShow());
242
+        $individuals = array_filter($individuals, static fn (Individual | null $individual): bool => $individual instanceof Individual && $individual->canShow());
243 243
 
244 244
         $baseyear    = (int) date('Y');
245 245
         $topyear     = 0;
Please login to merge, or discard this patch.
app/Module/InteractiveTree/TreeView.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
             switch ($firstLetter) {
94 94
                 case 'c':
95 95
                     $families = Collection::make(explode(',', $json_request))
96
-                        ->map(static fn (string $xref): Family|null => Registry::familyFactory()->make($xref, $tree))
96
+                        ->map(static fn (string $xref): Family | null => Registry::familyFactory()->make($xref, $tree))
97 97
                         ->filter();
98 98
 
99 99
                     $r[] = $this->drawChildren($families, 1, true);
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
      *
148 148
      * @return string
149 149
      */
150
-    private function getPersonDetails(Individual $individual, Family|null $family = null): string
150
+    private function getPersonDetails(Individual $individual, Family | null $family = null): string
151 151
     {
152 152
         $chart_url = route('module', [
153 153
             'module' => 'tree',
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
      *
236 236
      * @return string
237 237
      */
238
-    private function drawPerson(Individual $person, int $gen, int $state, Family|null $pfamily, string $line, bool $isRoot): string
238
+    private function drawPerson(Individual $person, int $gen, int $state, Family | null $pfamily, string $line, bool $isRoot): string
239 239
     {
240 240
         if ($gen < 0) {
241 241
             return '';
Please login to merge, or discard this patch.
app/Module/LifespansChartModule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -248,9 +248,9 @@
 block discarded – undo
248 248
     protected function chart(Tree $tree, array $xrefs): ResponseInterface
249 249
     {
250 250
         /** @var Individual[] $individuals */
251
-        $individuals = array_map(static fn (string $xref): Individual|null => Registry::individualFactory()->make($xref, $tree), $xrefs);
251
+        $individuals = array_map(static fn (string $xref): Individual | null => Registry::individualFactory()->make($xref, $tree), $xrefs);
252 252
 
253
-        $individuals = array_filter($individuals, static fn (Individual|null $individual): bool => $individual instanceof Individual && $individual->canShow());
253
+        $individuals = array_filter($individuals, static fn (Individual | null $individual): bool => $individual instanceof Individual && $individual->canShow());
254 254
 
255 255
         // Sort the array in order of birth year
256 256
         usort($individuals, Individual::birthDateComparator());
Please login to merge, or discard this patch.
app/Media.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
      * Get the first media file that contains an image.
77 77
      */
78
-    public function firstImageFile(): MediaFile|null
78
+    public function firstImageFile(): MediaFile | null
79 79
     {
80 80
         return $this->mediaFiles()
81 81
             ->first(static fn (MediaFile $media_file): bool => $media_file->isImage() && !$media_file->isExternal());
Please login to merge, or discard this patch.
app/Webtrees.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -240,7 +240,7 @@
 block discarded – undo
240 240
     /**
241 241
      * Run the application.
242 242
      */
243
-    public function run(string $php_sapi): int|ResponseInterface
243
+    public function run(string $php_sapi): int | ResponseInterface
244 244
     {
245 245
         if ($php_sapi === 'cli') {
246 246
             return $this->bootstrap()->cliRequest();
Please login to merge, or discard this patch.
app/Factories/ImageFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
                 $mime_type = Mime::DEFAULT_TYPE;
89 89
             }
90 90
 
91
-            $filename = $download ? addcslashes(string: basename(path: $path), characters: '"') : '';
91
+            $filename = $download ? addcslashes(string : basename(path : $path), characters : '"') : '';
92 92
 
93 93
             return $this->imageResponse(data: $filesystem->read(location: $path), mime_type: $mime_type, filename: $filename);
94 94
         } catch (UnableToReadFile | FilesystemException $ex) {
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
             $image     = $this->imageManager()->read(input: $filesystem->readStream($path));
148 148
             $watermark = $this->createWatermark(width: $image->width(), height: $image->height(), media_file: $media_file);
149 149
             $image     = $this->addWatermark(image: $image, watermark: $watermark);
150
-            $filename  = $download ? basename(path: $path) : '';
150
+            $filename  = $download ? basename(path : $path) : '';
151 151
             $quality   = $this->extractImageQuality(image: $image, default: static::GD_DEFAULT_IMAGE_QUALITY);
152 152
             $data      = $image->encodeByMediaType(type: $mime_type, quality:  $quality)->toString();
153 153
 
Please login to merge, or discard this patch.
app/Census/AbstractCensusColumn.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
     /**
66 66
      * Find the father of an individual
67 67
      */
68
-    public function father(Individual $individual): Individual|null
68
+    public function father(Individual $individual): Individual | null
69 69
     {
70 70
         $family = $individual->childFamilies()->first();
71 71
 
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     /**
80 80
      * Find the mother of an individual
81 81
      */
82
-    public function mother(Individual $individual): Individual|null
82
+    public function mother(Individual $individual): Individual | null
83 83
     {
84 84
         $family = $individual->childFamilies()->first();
85 85
 
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
     /**
94 94
      * Find the current spouse family of an individual
95 95
      */
96
-    public function spouseFamily(Individual $individual): Family|null
96
+    public function spouseFamily(Individual $individual): Family | null
97 97
     {
98 98
         return $individual->spouseFamilies()
99 99
                 // Exclude families that were created after this census date
Please login to merge, or discard this patch.
app/Module/ClippingsCartModule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
         return 6;
131 131
     }
132 132
 
133
-    public function getMenu(Tree $tree): Menu|null
133
+    public function getMenu(Tree $tree): Menu | null
134 134
     {
135 135
         $request = Registry::container()->get(ServerRequestInterface::class);
136 136
         $route   = Validator::attributes($request)->route();
@@ -353,7 +353,7 @@  discard block
 block discarded – undo
353 353
         $xrefs = array_map('strval', $xrefs); // PHP converts numeric keys to integers.
354 354
 
355 355
         // Fetch all the records in the cart.
356
-        $records = array_map(static fn (string $xref): GedcomRecord|null => Registry::gedcomRecordFactory()->make($xref, $tree), $xrefs);
356
+        $records = array_map(static fn (string $xref): GedcomRecord | null => Registry::gedcomRecordFactory()->make($xref, $tree), $xrefs);
357 357
 
358 358
         // Some records may have been deleted after they were added to the cart.
359 359
         $records = array_filter($records);
Please login to merge, or discard this patch.