@@ -144,8 +144,7 @@ |
||
| 144 | 144 | } |
| 145 | 145 | return $genitive( |
| 146 | 146 | $sex === 'F' ? |
| 147 | - 'cousine du ' . $down . '<sup>e</sup> au ' . $up . '<sup>e</sup> degré' : |
|
| 148 | - 'cousin du ' . $down . '<sup>e</sup> au ' . $up . '<sup>e</sup> degré', |
|
| 147 | + 'cousine du ' . $down . '<sup>e</sup> au ' . $up . '<sup>e</sup> degré' : 'cousin du ' . $down . '<sup>e</sup> au ' . $up . '<sup>e</sup> degré', |
|
| 149 | 148 | $sex === 'F' ? 'de la ' : 'du ' |
| 150 | 149 | ); |
| 151 | 150 | }; |
@@ -154,7 +154,7 @@ |
||
| 154 | 154 | } |
| 155 | 155 | } |
| 156 | 156 | |
| 157 | - if ($values[$i] !== '' || $children_with_values && !$element instanceof AbstractXrefElement) { |
|
| 157 | + if ($values[$i] !== '' || $children_with_values && !$element instanceof AbstractXrefElement) { |
|
| 158 | 158 | if ($values[$i] === '') { |
| 159 | 159 | $gedcom_lines[] = $levels[$i] . ' ' . $tags[$i]; |
| 160 | 160 | } else { |
@@ -62,7 +62,7 @@ |
||
| 62 | 62 | * |
| 63 | 63 | * @return ResponseInterface |
| 64 | 64 | */ |
| 65 | - public function response(string|array|object $content = '', int $code = StatusCodeInterface::STATUS_OK, array $headers = []): ResponseInterface; |
|
| 65 | + public function response(string | array | object $content = '', int $code = StatusCodeInterface::STATUS_OK, array $headers = []): ResponseInterface; |
|
| 66 | 66 | |
| 67 | 67 | /** |
| 68 | 68 | * Create and render a view, and embed it in an HTML page. |
@@ -109,7 +109,7 @@ discard block |
||
| 109 | 109 | * |
| 110 | 110 | * @return array|bool|int|null|string |
| 111 | 111 | */ |
| 112 | - public static function get(string $name, array|bool|int|string $default = null) |
|
| 112 | + public static function get(string $name, array | bool | int | string $default = null) |
|
| 113 | 113 | { |
| 114 | 114 | return $_SESSION[$name] ?? $default; |
| 115 | 115 | } |
@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | * |
| 122 | 122 | * @return array|bool|int|null|string |
| 123 | 123 | */ |
| 124 | - public static function pull(string $name): array|bool|int|null|string |
|
| 124 | + public static function pull(string $name): array | bool | int | null | string |
|
| 125 | 125 | { |
| 126 | 126 | $value = self::get($name); |
| 127 | 127 | self::forget($name); |
@@ -165,7 +165,7 @@ discard block |
||
| 165 | 165 | * |
| 166 | 166 | * @return void |
| 167 | 167 | */ |
| 168 | - public static function put(string $name, array|bool|int|null|string $value): void |
|
| 168 | + public static function put(string $name, array | bool | int | null | string $value): void |
|
| 169 | 169 | { |
| 170 | 170 | $_SESSION[$name] = $value; |
| 171 | 171 | } |
@@ -269,7 +269,7 @@ |
||
| 269 | 269 | * |
| 270 | 270 | * @return string |
| 271 | 271 | */ |
| 272 | - public static function digits(string|int $n): string |
|
| 272 | + public static function digits(string | int $n): string |
|
| 273 | 273 | { |
| 274 | 274 | return self::$locale->digits((string) $n); |
| 275 | 275 | } |
@@ -60,7 +60,7 @@ |
||
| 60 | 60 | $tree = $this->tree_service->all()->get($ged); |
| 61 | 61 | |
| 62 | 62 | if ($tree instanceof Tree && $action === 'run') { |
| 63 | - $query = $request->getQueryParams(); |
|
| 63 | + $query = $request->getQueryParams(); |
|
| 64 | 64 | $query['report'] = basename(dirname($query['report'] ?? '')); |
| 65 | 65 | $query['tree'] = $tree->name(); |
| 66 | 66 | |
@@ -50,7 +50,7 @@ |
||
| 50 | 50 | // Defaults |
| 51 | 51 | public const DEFAULT_GENERATIONS = '4'; |
| 52 | 52 | public const DEFAULT_STYLE = self::CHART_STYLE_TREE; |
| 53 | - protected const DEFAULT_PARAMETERS = [ |
|
| 53 | + protected const DEFAULT_PARAMETERS = [ |
|
| 54 | 54 | 'generations' => self::DEFAULT_GENERATIONS, |
| 55 | 55 | 'style' => self::DEFAULT_STYLE, |
| 56 | 56 | ]; |
@@ -58,7 +58,7 @@ |
||
| 58 | 58 | |
| 59 | 59 | // Force a ".ged" suffix |
| 60 | 60 | if (strtolower(pathinfo($filename, PATHINFO_EXTENSION)) === 'ged') { |
| 61 | - $download_filename = substr($filename, 0, -4); |
|
| 61 | + $download_filename = substr($filename, 0, -4); |
|
| 62 | 62 | } else { |
| 63 | 63 | $download_filename = $filename; |
| 64 | 64 | } |
@@ -50,7 +50,7 @@ |
||
| 50 | 50 | $xref = Validator::attributes($request)->isXref()->string('xref'); |
| 51 | 51 | $media = Registry::mediaFactory()->make($xref, $tree); |
| 52 | 52 | $media = Auth::checkMediaAccess($media, true); |
| 53 | - $params = (array) $request->getParsedBody(); |
|
| 53 | + $params = (array) $request->getParsedBody(); |
|
| 54 | 54 | |
| 55 | 55 | $order = $params['order']; |
| 56 | 56 | assert(is_array($order)); |