@@ -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 | /** |
@@ -37,12 +37,12 @@ |
||
37 | 37 | class EditIndividualController extends AbstractEditController |
38 | 38 | { |
39 | 39 | /** |
40 | - * Add a child to an existing individual (creating a one-parent family). |
|
41 | - * |
|
42 | - * @param ServerRequestInterface $request |
|
43 | - * |
|
44 | - * @return ResponseInterface |
|
45 | - */ |
|
40 | + * Add a child to an existing individual (creating a one-parent family). |
|
41 | + * |
|
42 | + * @param ServerRequestInterface $request |
|
43 | + * |
|
44 | + * @return ResponseInterface |
|
45 | + */ |
|
46 | 46 | public function addChild(ServerRequestInterface $request): ResponseInterface |
47 | 47 | { |
48 | 48 | $tree = $request->getAttribute('tree'); |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | return array ( |
4 | - '%H:%i:%s' => '%g:%i:%s %a', |
|
5 | - '%j %F %Y' => '%F %j, %Y', |
|
4 | + '%H:%i:%s' => '%g:%i:%s %a', |
|
5 | + '%j %F %Y' => '%F %j, %Y', |
|
6 | 6 | ); |
@@ -255,9 +255,9 @@ discard block |
||
255 | 255 | $facts = $this->getPedigreeMapFacts($request, $this->chart_service); |
256 | 256 | |
257 | 257 | $geojson = [ |
258 | - 'type' => 'FeatureCollection', |
|
259 | - 'features' => [], |
|
260 | - ]; |
|
258 | + 'type' => 'FeatureCollection', |
|
259 | + 'features' => [], |
|
260 | + ]; |
|
261 | 261 | |
262 | 262 | $sosa_points = []; |
263 | 263 | |
@@ -285,14 +285,14 @@ discard block |
||
285 | 285 | // rather than generate polylines but the MarkerCluster library |
286 | 286 | // doesn't seem to like them |
287 | 287 | $polyline = [ |
288 | - 'points' => [ |
|
289 | - $sosa_points[$sosa_child], |
|
290 | - [$latitude, $longitude], |
|
291 | - ], |
|
292 | - 'options' => [ |
|
293 | - 'color' => $color, |
|
294 | - ], |
|
295 | - ]; |
|
288 | + 'points' => [ |
|
289 | + $sosa_points[$sosa_child], |
|
290 | + [$latitude, $longitude], |
|
291 | + ], |
|
292 | + 'options' => [ |
|
293 | + 'color' => $color, |
|
294 | + ], |
|
295 | + ]; |
|
296 | 296 | } |
297 | 297 | $geojson['features'][] = [ |
298 | 298 | 'type' => 'Feature', |