@@ -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)); |
@@ -126,7 +126,7 @@ |
||
126 | 126 | ->flatten(); |
127 | 127 | |
128 | 128 | // Don't show family meta-data tags |
129 | - $exclude_facts = new Collection(['FAM:CHAN', 'FAM:_UID']); |
|
129 | + $exclude_facts = new Collection(['FAM:CHAN', 'FAM:_UID']); |
|
130 | 130 | // Don't show tags that are shown in tabs or sidebars |
131 | 131 | $exclude_facts = $exclude_facts->merge($sidebar_facts)->merge($tab_facts); |
132 | 132 |
@@ -89,7 +89,7 @@ |
||
89 | 89 | * |
90 | 90 | * @return SharedNote |
91 | 91 | */ |
92 | - public function new(string $xref, string $gedcom, ?string $pending, Tree $tree): SharedNote |
|
92 | + public function new(string $xref, string $gedcom, ?string $pending, Tree $tree) : SharedNote |
|
93 | 93 | { |
94 | 94 | return new SharedNote($xref, $gedcom, $pending, $tree); |
95 | 95 | } |
@@ -59,5 +59,5 @@ |
||
59 | 59 | * |
60 | 60 | * @return SharedNote |
61 | 61 | */ |
62 | - public function new(string $xref, string $gedcom, ?string $pending, Tree $tree): SharedNote; |
|
62 | + public function new(string $xref, string $gedcom, ?string $pending, Tree $tree) : SharedNote; |
|
63 | 63 | } |
@@ -94,7 +94,7 @@ |
||
94 | 94 | 'hu' => ['CS' => 'CS', 'DZS' => 'DZS', 'DZ' => 'DZ', 'GY' => 'GY', 'LY' => 'LY', 'NY' => 'NY', 'SZ' => 'SZ', 'TY' => 'TY', 'ZS' => 'ZS'], |
95 | 95 | 'nl' => ['IJ' => 'IJ'], |
96 | 96 | 'nn' => ['AA' => 'Å'], |
97 | - 'sk' => ['DZ' => 'DZ', 'DŽ' => 'DŽ','CH' => 'CH'], |
|
97 | + 'sk' => ['DZ' => 'DZ', 'DŽ' => 'DŽ', 'CH' => 'CH'], |
|
98 | 98 | ]; |
99 | 99 | |
100 | 100 | /** |