@@ -199,7 +199,7 @@ discard block |
||
199 | 199 | $currentLen = $endPos + 2; |
200 | 200 | $directive = substr($workingText, 0, $currentLen); |
201 | 201 | $workingText = substr($workingText, $currentLen); |
202 | - $result .= self::$waitingText . $directive; |
|
202 | + $result .= self::$waitingText . $directive; |
|
203 | 203 | self::$waitingText = ''; |
204 | 204 | break; |
205 | 205 | } |
@@ -308,7 +308,7 @@ discard block |
||
308 | 308 | break; |
309 | 309 | } |
310 | 310 | self::$waitingText .= $currentLetter; |
311 | - $workingText = substr($workingText, $currentLen); |
|
311 | + $workingText = substr($workingText, $currentLen); |
|
312 | 312 | if ($openParIndex !== false) { |
313 | 313 | // Opening parentheses always inherit the following directionality |
314 | 314 | while (true) { |
@@ -318,13 +318,13 @@ discard block |
||
318 | 318 | if (str_starts_with($workingText, ' ')) { |
319 | 319 | // Spaces following this left parenthesis inherit the following directionality too |
320 | 320 | self::$waitingText .= ' '; |
321 | - $workingText = substr($workingText, 1); |
|
321 | + $workingText = substr($workingText, 1); |
|
322 | 322 | continue; |
323 | 323 | } |
324 | 324 | if (str_starts_with($workingText, ' ')) { |
325 | 325 | // Spaces following this left parenthesis inherit the following directionality too |
326 | 326 | self::$waitingText .= ' '; |
327 | - $workingText = substr($workingText, 6); |
|
327 | + $workingText = substr($workingText, 6); |
|
328 | 328 | continue; |
329 | 329 | } |
330 | 330 | break; |
@@ -341,7 +341,7 @@ discard block |
||
341 | 341 | // Exceptions to this rule will be handled later during final clean-up. |
342 | 342 | // |
343 | 343 | if (self::$currentState !== '') { |
344 | - $result .= self::$waitingText; |
|
344 | + $result .= self::$waitingText; |
|
345 | 345 | self::$waitingText = ''; |
346 | 346 | } |
347 | 347 | break 2; // double break because we're waiting for more information |
@@ -470,7 +470,7 @@ discard block |
||
470 | 470 | } |
471 | 471 | if (substr($result . "\n", 0, self::LENGTH_START) !== self::START_LTR && substr($result . "\n", 0, self::LENGTH_START) !== self::START_RTL) { |
472 | 472 | $leadingText .= substr($result, 0, 1); |
473 | - $result = substr($result, 1); |
|
473 | + $result = substr($result, 1); |
|
474 | 474 | continue; |
475 | 475 | } |
476 | 476 | $result = substr($result, 0, self::LENGTH_START) . $leadingText . substr($result, self::LENGTH_START); |
@@ -612,11 +612,11 @@ discard block |
||
612 | 612 | private static function breakCurrentSpan(string &$result): void |
613 | 613 | { |
614 | 614 | // Interrupt the current span, insert that <br>, and then continue the current span |
615 | - $result .= self::$waitingText; |
|
615 | + $result .= self::$waitingText; |
|
616 | 616 | self::$waitingText = ''; |
617 | 617 | |
618 | 618 | $breakString = '<' . self::$currentState . 'br>'; |
619 | - $result .= $breakString; |
|
619 | + $result .= $breakString; |
|
620 | 620 | } |
621 | 621 | |
622 | 622 | /** |
@@ -673,7 +673,7 @@ discard block |
||
673 | 673 | break; |
674 | 674 | } // No more numeric strings |
675 | 675 | |
676 | - $tempResult .= substr($textSpan, 0, $posLRE + 3); // Copy everything preceding the numeric string |
|
676 | + $tempResult .= substr($textSpan, 0, $posLRE + 3); // Copy everything preceding the numeric string |
|
677 | 677 | $numericString = substr($textSpan, $posLRE + 3, $posPDF - $posLRE); // Separate the entire numeric string |
678 | 678 | $textSpan = substr($textSpan, $posPDF + 3); |
679 | 679 | $posColon = strpos($numericString, ':'); |
@@ -1140,7 +1140,7 @@ discard block |
||
1140 | 1140 | |
1141 | 1141 | // We're done: finish the span |
1142 | 1142 | $textSpan = self::starredName($textSpan, 'RTL'); // Wrap starred name in <u> and </u> tags |
1143 | - $result .= $textSpan . self::END_RTL; |
|
1143 | + $result .= $textSpan . self::END_RTL; |
|
1144 | 1144 | } |
1145 | 1145 | |
1146 | 1146 | if (self::$currentState !== 'LTR' && self::$currentState !== 'RTL') { |
@@ -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 | } |
@@ -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 | } |
@@ -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 | } |
@@ -300,7 +300,7 @@ discard block |
||
300 | 300 | $value = null; |
301 | 301 | } |
302 | 302 | |
303 | - $callback = static fn (?float $value, Closure $rule): ?float => $rule($value); |
|
303 | + $callback = static fn (?float $value, Closure $rule) : ?float => $rule($value); |
|
304 | 304 | |
305 | 305 | $value = array_reduce($this->rules, $callback, $value) ?? $default; |
306 | 306 | |
@@ -333,7 +333,7 @@ discard block |
||
333 | 333 | $value = null; |
334 | 334 | } |
335 | 335 | |
336 | - $callback = static fn (?int $value, Closure $rule): ?int => $rule($value); |
|
336 | + $callback = static fn (?int $value, Closure $rule) : ?int => $rule($value); |
|
337 | 337 | |
338 | 338 | $value = array_reduce($this->rules, $callback, $value) ?? $default; |
339 | 339 | |
@@ -374,9 +374,9 @@ discard block |
||
374 | 374 | $value = null; |
375 | 375 | } |
376 | 376 | |
377 | - $callback = static fn (?string $value, Closure $rule): ?string => $rule($value); |
|
377 | + $callback = static fn (?string $value, Closure $rule) : ?string => $rule($value); |
|
378 | 378 | |
379 | - $value = array_reduce($this->rules, $callback, $value) ?? $default; |
|
379 | + $value = array_reduce($this->rules, $callback, $value) ?? $default; |
|
380 | 380 | |
381 | 381 | if ($value === null) { |
382 | 382 | throw new HttpBadRequestException(I18N::translate('The parameter “%s” is missing.', $parameter)); |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -return array ( |
|
3 | +return array( |
|
4 | 4 | '%H:%i:%s' => '%g:%i:%s %a', |
5 | 5 | '%j %F %Y' => '%F %j, %Y', |
6 | 6 | 'Asunción, Paraguay' => 'Asuncion, Paraguay', |
@@ -1,19 +1,19 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | return array ( |
4 | - '%H:%i:%s' => '%g:%i:%s %a', |
|
5 | - '%j %F %Y' => '%F %j, %Y', |
|
6 | - 'Asunción, Paraguay' => 'Asuncion, Paraguay', |
|
7 | - 'Bogotá, Colombia' => 'Bogota, Colombia', |
|
8 | - 'Ciudad Juárez, Mexico' => 'Ciudad Juarez, Mexico', |
|
9 | - 'Colonia Juárez, Mexico' => 'Colonia Juarez, Mexico', |
|
10 | - 'Curaçao' => 'Curacao', |
|
11 | - 'Córdoba, Argentina' => 'Cordoba, Argentina', |
|
12 | - 'Côte d’Ivoire' => 'Cote d’Ivoire', |
|
13 | - 'Réunion' => 'Reunion', |
|
14 | - 'Saint Barthélemy' => 'Saint Barthelemy', |
|
15 | - 'San José, Costa Rica' => 'San Jose, Costa Rica', |
|
16 | - 'São Paulo, Brazil' => 'Sao Paulo, Brazil', |
|
17 | - 'Tuxtla Gutiérrez, Mexico' => 'Tuxtla Gutierrez, Mexico', |
|
18 | - 'Åland Islands' => 'Aland Islands', |
|
4 | + '%H:%i:%s' => '%g:%i:%s %a', |
|
5 | + '%j %F %Y' => '%F %j, %Y', |
|
6 | + 'Asunción, Paraguay' => 'Asuncion, Paraguay', |
|
7 | + 'Bogotá, Colombia' => 'Bogota, Colombia', |
|
8 | + 'Ciudad Juárez, Mexico' => 'Ciudad Juarez, Mexico', |
|
9 | + 'Colonia Juárez, Mexico' => 'Colonia Juarez, Mexico', |
|
10 | + 'Curaçao' => 'Curacao', |
|
11 | + 'Córdoba, Argentina' => 'Cordoba, Argentina', |
|
12 | + 'Côte d’Ivoire' => 'Cote d’Ivoire', |
|
13 | + 'Réunion' => 'Reunion', |
|
14 | + 'Saint Barthélemy' => 'Saint Barthelemy', |
|
15 | + 'San José, Costa Rica' => 'San Jose, Costa Rica', |
|
16 | + 'São Paulo, Brazil' => 'Sao Paulo, Brazil', |
|
17 | + 'Tuxtla Gutiérrez, Mexico' => 'Tuxtla Gutierrez, Mexico', |
|
18 | + 'Åland Islands' => 'Aland Islands', |
|
19 | 19 | ); |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | */ |
46 | 46 | public function make(int $timestamp, ?UserInterface $user = null): TimestampInterface |
47 | 47 | { |
48 | - $user ??= Auth::user(); |
|
48 | + $user ??= Auth::user(); |
|
49 | 49 | $timezone = $user->getPreference(UserInterface::PREF_TIME_ZONE, Site::getPreference('TIMEZONE')); |
50 | 50 | $locale = I18N::locale()->code(); |
51 | 51 | |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | */ |
62 | 62 | public function fromString(?string $string, string $format = 'Y-m-d H:i:s', ?UserInterface $user = null): TimestampInterface |
63 | 63 | { |
64 | - $string ??= date($format); |
|
64 | + $string ??= date($format); |
|
65 | 65 | $timestamp = date_create_from_format($format, $string); |
66 | 66 | |
67 | 67 | if ($timestamp === false) { |
@@ -304,7 +304,8 @@ discard block |
||
304 | 304 | <li class="wt-initials-list-item d-flex"> |
305 | 305 | <?php if ($count > 0) : ?> |
306 | 306 | <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> |
307 | - <?php else : ?> |
|
307 | + <?php else { |
|
308 | + : ?> |
|
308 | 309 | <span class="wt-initial px-1 text-muted"><?= $this->displaySurnameInitial((string) $letter) ?></span> |
309 | 310 | |
310 | 311 | <?php endif ?> |
@@ -359,6 +360,7 @@ discard block |
||
359 | 360 | switch ($alpha) { |
360 | 361 | case '@': |
361 | 362 | $filter = static fn (string $x): bool => $x === Individual::NOMEN_NESCIO; |
363 | +} |
|
362 | 364 | break; |
363 | 365 | case ',': |
364 | 366 | $filter = static fn (string $x): bool => $x === ''; |
@@ -321,7 +321,7 @@ |
||
321 | 321 | } |
322 | 322 | |
323 | 323 | // Remove links to missing and private records |
324 | - $pattern = '/\n(\d) ' . Gedcom::REGEX_TAG . ' @(' . Gedcom::REGEX_XREF . ')@/'; |
|
324 | + $pattern = '/\n(\d) ' . Gedcom::REGEX_TAG . ' @(' . Gedcom::REGEX_XREF . ')@/'; |
|
325 | 325 | preg_match_all($pattern, $gedcom, $matches, PREG_SET_ORDER); |
326 | 326 | |
327 | 327 | foreach ($matches as $match) { |
@@ -90,7 +90,7 @@ |
||
90 | 90 | |
91 | 91 | // Only update session once a minute to reduce contention on the session table. |
92 | 92 | if (date('Y-m-d H:i:s', time() - 60) > $this->row->session_time) { |
93 | - $updates['session_time'] = date('Y-m-d H:i:s'); |
|
93 | + $updates['session_time'] = date('Y-m-d H:i:s'); |
|
94 | 94 | } |
95 | 95 | |
96 | 96 | if ($updates !== []) { |
@@ -1245,7 +1245,7 @@ discard block |
||
1245 | 1245 | |
1246 | 1246 | public function latestUserRegDate(?string $format = null): string |
1247 | 1247 | { |
1248 | - $format ??= I18N::dateFormat(); |
|
1248 | + $format ??= I18N::dateFormat(); |
|
1249 | 1249 | $user = $this->user_service->find($this->data->latestUserId()) ?? Auth::user(); |
1250 | 1250 | $timestamp = (int) $user->getPreference(UserInterface::PREF_TIMESTAMP_REGISTERED); |
1251 | 1251 | |
@@ -1258,7 +1258,7 @@ discard block |
||
1258 | 1258 | |
1259 | 1259 | public function latestUserRegTime(?string $format = null): string |
1260 | 1260 | { |
1261 | - $format ??= I18N::timeFormat(); |
|
1261 | + $format ??= I18N::timeFormat(); |
|
1262 | 1262 | $user = $this->user_service->find($this->data->latestUserId()) ?? Auth::user(); |
1263 | 1263 | $timestamp = (int) $user->getPreference(UserInterface::PREF_TIMESTAMP_REGISTERED); |
1264 | 1264 |