@@ -94,7 +94,7 @@ |
||
94 | 94 | /** @var Collection<GedcomRecord> $records */ |
95 | 95 | $records = $rows->map(function (stdClass $row) use ($tree): ?GedcomRecord { |
96 | 96 | return $this->data_fix_service->getRecordByType($row->xref, $tree, $row->type); |
97 | - })->filter(static function (?GedcomRecord $record) use ($module, $params): bool { |
|
97 | + })->filter(static function (?GedcomRecord $record) use ($module, $params) : bool { |
|
98 | 98 | return $record instanceof GedcomRecord && !$record->isPendingDeletion() && $module->doesRecordNeedUpdate($record, $params); |
99 | 99 | }); |
100 | 100 |
@@ -232,7 +232,7 @@ discard block |
||
232 | 232 | $create_form = ''; |
233 | 233 | foreach ($media_trees as $media_tree => $media_directory) { |
234 | 234 | if (str_starts_with($row[0], $media_directory)) { |
235 | - $tmp = substr($row[0], strlen($media_directory)); |
|
235 | + $tmp = substr($row[0], strlen($media_directory)); |
|
236 | 236 | $create_form .= |
237 | 237 | '<p><a href="#" data-toggle="modal" data-backdrop="static" data-target="#modal-create-media-from-file" data-file="' . e($tmp) . '" data-url="' . e(route(CreateMediaObjectFromFile::class, ['tree' => $media_tree])) . '" onclick="document.getElementById(\'modal-create-media-from-file-form\').action=this.dataset.url; document.getElementById(\'file\').value=this.dataset.file;">' . I18N::translate('Create') . '</a> — ' . e($media_tree) . '<p>'; |
238 | 238 | } |
@@ -327,7 +327,7 @@ discard block |
||
327 | 327 | // This will work for local filesystems. For remote filesystems, we will |
328 | 328 | // need to copy the file locally to work out the image size. |
329 | 329 | $imgsize = getimagesize(Webtrees::DATA_DIR . $file); |
330 | - $html .= '<dt>' . I18N::translate('Image dimensions') . '</dt>'; |
|
330 | + $html .= '<dt>' . I18N::translate('Image dimensions') . '</dt>'; |
|
331 | 331 | /* I18N: image dimensions, width × height */ |
332 | 332 | $html .= '<dd>' . I18N::translate('%1$s × %2$s pixels', I18N::number($imgsize['0']), I18N::number($imgsize['1'])) . '</dd>'; |
333 | 333 | } catch (Throwable $ex) { |
@@ -85,7 +85,7 @@ |
||
85 | 85 | } |
86 | 86 | |
87 | 87 | // Request for a non-existent location? |
88 | - if ($parent_id !== null && $parent->id() === null) { |
|
88 | + if ($parent_id !== null && $parent->id() === null) { |
|
89 | 89 | return redirect(route(__CLASS__)); |
90 | 90 | } |
91 | 91 |
@@ -52,7 +52,7 @@ |
||
52 | 52 | */ |
53 | 53 | public function find(?int $user_id): ?User |
54 | 54 | { |
55 | - return Registry::cache()->array()->remember('user-' . $user_id, static function () use ($user_id): ?User { |
|
55 | + return Registry::cache()->array()->remember('user-' . $user_id, static function () use ($user_id) : ?User { |
|
56 | 56 | return DB::table('user') |
57 | 57 | ->where('user_id', '=', $user_id) |
58 | 58 | ->get() |