@@ -301,7 +301,7 @@ |
||
301 | 301 | { |
302 | 302 | $latest_version = $this->fetchLatestVersion(false); |
303 | 303 | |
304 | - [, , $url] = explode('|', $latest_version . '||'); |
|
304 | + [,, $url] = explode('|', $latest_version . '||'); |
|
305 | 305 | |
306 | 306 | return $url; |
307 | 307 | } |
@@ -1072,7 +1072,7 @@ |
||
1072 | 1072 | * @param Expression|string $column |
1073 | 1073 | * @param array<string> $search_terms |
1074 | 1074 | */ |
1075 | - private function whereSearch(Builder $query, Expression|string $column, array $search_terms): void |
|
1075 | + private function whereSearch(Builder $query, Expression | string $column, array $search_terms): void |
|
1076 | 1076 | { |
1077 | 1077 | foreach ($search_terms as $search_term) { |
1078 | 1078 | $query->where($column, 'LIKE', '%' . addcslashes($search_term, '\\%_') . '%'); |
@@ -289,7 +289,8 @@ discard block |
||
289 | 289 | <li class="wt-initials-list-item d-flex"> |
290 | 290 | <?php if ($count > 0) : ?> |
291 | 291 | <a href="<?= e($this->listUrl($tree, ['alpha' => $letter, 'show_marnm' => $show_marnm, 'tree' => $tree->name()])) ?>" class="wt-initial px-1<?= $letter === $alpha ? ' active' : '' ?> '" title="<?= I18N::number($count) ?>"><?= $this->displaySurnameInitial((string) $letter) ?></a> |
292 | - <?php else : ?> |
|
292 | + <?php else { |
|
293 | + : ?> |
|
293 | 294 | <span class="wt-initial px-1 text-muted"><?= $this->displaySurnameInitial((string) $letter) ?></span> |
294 | 295 | |
295 | 296 | <?php endif ?> |
@@ -344,6 +345,7 @@ discard block |
||
344 | 345 | switch ($alpha) { |
345 | 346 | case '@': |
346 | 347 | $surns = array_filter($all_surnames, static fn (string $x): bool => $x === Individual::NOMEN_NESCIO, ARRAY_FILTER_USE_KEY); |
348 | +} |
|
347 | 349 | break; |
348 | 350 | case ',': |
349 | 351 | $surns = array_filter($all_surnames, static fn (string $x): bool => $x === '', ARRAY_FILTER_USE_KEY); |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | */ |
126 | 126 | public function isBetween(int $minimum, int $maximum): self |
127 | 127 | { |
128 | - $this->rules[] = static function (?int $value) use ($minimum, $maximum): ?int { |
|
128 | + $this->rules[] = static function (?int $value) use ($minimum, $maximum) : ?int { |
|
129 | 129 | if (is_int($value) && $value >= $minimum && $value <= $maximum) { |
130 | 130 | return $value; |
131 | 131 | } |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | */ |
144 | 144 | public function isInArray(array $values): self |
145 | 145 | { |
146 | - $this->rules[] = static fn (int|string|null $value): int|string|null => in_array($value, $values, true) ? $value : null; |
|
146 | + $this->rules[] = static fn (int | string | null $value): int | string | null => in_array($value, $values, true) ? $value : null; |
|
147 | 147 | |
148 | 148 | return $this; |
149 | 149 | } |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | */ |
164 | 164 | public function isNotEmpty(): self |
165 | 165 | { |
166 | - $this->rules[] = static fn (?string $value): ?string => $value !== null && $value !== '' ? $value : null; |
|
166 | + $this->rules[] = static fn (?string $value) : ?string => $value !== null && $value !== '' ? $value : null; |
|
167 | 167 | |
168 | 168 | return $this; |
169 | 169 | } |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | { |
176 | 176 | $base_url = $this->request->getAttribute('base_url', ''); |
177 | 177 | |
178 | - $this->rules[] = static function (?string $value) use ($base_url): ?string { |
|
178 | + $this->rules[] = static function (?string $value) use ($base_url) : ?string { |
|
179 | 179 | if ($value !== null) { |
180 | 180 | $value_info = parse_url($value); |
181 | 181 | $base_url_info = parse_url($base_url); |
@@ -279,7 +279,7 @@ discard block |
||
279 | 279 | throw new HttpBadRequestException(I18N::translate('The parameter “%s” is missing.', $parameter)); |
280 | 280 | } |
281 | 281 | |
282 | - $callback = static fn (?array $value, Closure $rule): ?array => $rule($value); |
|
282 | + $callback = static fn (?array $value, Closure $rule) : ?array => $rule($value); |
|
283 | 283 | |
284 | 284 | return array_reduce($this->rules, $callback, $value) ?? []; |
285 | 285 | } |
@@ -306,7 +306,7 @@ discard block |
||
306 | 306 | $value = null; |
307 | 307 | } |
308 | 308 | |
309 | - $callback = static fn (?int $value, Closure $rule): ?int => $rule($value); |
|
309 | + $callback = static fn (?int $value, Closure $rule) : ?int => $rule($value); |
|
310 | 310 | |
311 | 311 | $value = array_reduce($this->rules, $callback, $value) ?? $default; |
312 | 312 | |
@@ -347,9 +347,9 @@ discard block |
||
347 | 347 | $value = null; |
348 | 348 | } |
349 | 349 | |
350 | - $callback = static fn (?string $value, Closure $rule): ?string => $rule($value); |
|
350 | + $callback = static fn (?string $value, Closure $rule) : ?string => $rule($value); |
|
351 | 351 | |
352 | - $value = array_reduce($this->rules, $callback, $value) ?? $default; |
|
352 | + $value = array_reduce($this->rules, $callback, $value) ?? $default; |
|
353 | 353 | |
354 | 354 | if ($value === null) { |
355 | 355 | throw new HttpBadRequestException(I18N::translate('The parameter “%s” is missing.', $parameter)); |