@@ -102,9 +102,9 @@ |
||
102 | 102 | ->groupBy(['century', 'sex']); |
103 | 103 | |
104 | 104 | return $male->unionAll($female) |
105 | - ->orderBy('century') |
|
106 | - ->get() |
|
107 | - ->all(); |
|
105 | + ->orderBy('century') |
|
106 | + ->get() |
|
107 | + ->all(); |
|
108 | 108 | } |
109 | 109 | |
110 | 110 | /** |
@@ -1,4 +1,4 @@ |
||
1 | 1 | <?php return array ( |
2 | - '%H:%i:%s' => '%g:%i:%s %a', |
|
3 | - '%j %F %Y' => '%F %j, %Y', |
|
2 | + '%H:%i:%s' => '%g:%i:%s %a', |
|
3 | + '%j %F %Y' => '%F %j, %Y', |
|
4 | 4 | ); |
@@ -370,10 +370,10 @@ |
||
370 | 370 | } |
371 | 371 | |
372 | 372 | /** |
373 | - * @param ServerRequestInterface $request |
|
374 | - * |
|
375 | - * @return ResponseInterface |
|
376 | - */ |
|
373 | + * @param ServerRequestInterface $request |
|
374 | + * |
|
375 | + * @return ResponseInterface |
|
376 | + */ |
|
377 | 377 | public function duplicates(ServerRequestInterface $request): ResponseInterface |
378 | 378 | { |
379 | 379 | $tree = $request->getAttribute('tree'); |
@@ -382,7 +382,7 @@ |
||
382 | 382 | |
383 | 383 | // One is a substring of the other. e.g. Halen / Van Halen |
384 | 384 | return stripos($surname1, $surname2) !== false || stripos($surname2, $surname1) !== false; |
385 | - } |
|
385 | + } |
|
386 | 386 | |
387 | 387 | /** |
388 | 388 | * Convert a SOSA number into a generation number. e.g. 8 = great-grandfather = 3 generations |