@@ -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 | ); |
@@ -32,8 +32,8 @@ discard block |
||
32 | 32 | */ |
33 | 33 | class BatchUpdatePrimaryMediaPlugin extends BatchUpdateBasePlugin |
34 | 34 | { |
35 | - /** @var array Array of xref of media objects marked as primary */ |
|
36 | - private $primary_media; |
|
35 | + /** @var array Array of xref of media objects marked as primary */ |
|
36 | + private $primary_media; |
|
37 | 37 | |
38 | 38 | /** |
39 | 39 | * User-friendly name for this plugin. |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | $key = array_search ($primary_media, $matches[0]); |
88 | 88 | $update = ($key >= count($rows)) ? true : false; |
89 | 89 | } |
90 | - // Store the found items as Gedcom row in a class array to retrieve them later in the process |
|
90 | + // Store the found items as Gedcom row in a class array to retrieve them later in the process |
|
91 | 91 | $this->primary_media[$record->xref()][] = $primary_media; |
92 | 92 | |
93 | 93 | } |