@@ -121,7 +121,7 @@ |
||
121 | 121 | |
122 | 122 | // If we are only showing living individuals, then we don't need to search for DEAT events. |
123 | 123 | if ($filter) { |
124 | - $event_array = array_diff($event_array, Gedcom::DEATH_EVENTS); |
|
124 | + $event_array = array_diff($event_array, Gedcom::DEATH_EVENTS); |
|
125 | 125 | } |
126 | 126 | |
127 | 127 | $events_filter = implode('|', $event_array); |
@@ -52,7 +52,7 @@ |
||
52 | 52 | } |
53 | 53 | |
54 | 54 | // Did we emigrate or naturalise? |
55 | - foreach ($individual->facts(['IMMI' ,'EMIG', 'NATU'], true) as $fact) { |
|
55 | + foreach ($individual->facts(['IMMI', 'EMIG', 'NATU'], true) as $fact) { |
|
56 | 56 | if (Date::compare($fact->date(), $this->date()) <= 0) { |
57 | 57 | $place = $fact->place()->getGedcomName(); |
58 | 58 | } |
@@ -121,7 +121,7 @@ |
||
121 | 121 | |
122 | 122 | // If we are only showing living individuals, then we don't need to search for DEAT events. |
123 | 123 | if ($filter) { |
124 | - $event_array = array_diff($event_array, Gedcom::DEATH_EVENTS); |
|
124 | + $event_array = array_diff($event_array, Gedcom::DEATH_EVENTS); |
|
125 | 125 | } |
126 | 126 | |
127 | 127 | $events_filter = implode('|', $event_array); |
@@ -96,7 +96,7 @@ |
||
96 | 96 | $smtp_pass = Site::getPreference('SMTP_AUTH_PASS'); |
97 | 97 | $smtp_encr = Site::getPreference('SMTP_SSL'); |
98 | 98 | |
99 | - $transport =(new Swift_SmtpTransport($smtp_host, $smtp_port, $smtp_encr)); |
|
99 | + $transport = (new Swift_SmtpTransport($smtp_host, $smtp_port, $smtp_encr)); |
|
100 | 100 | |
101 | 101 | $transport->setLocalDomain(Site::getPreference('SMTP_HELO')); |
102 | 102 |
@@ -76,7 +76,7 @@ |
||
76 | 76 | { |
77 | 77 | $latest_version = $this->fetchLatestVersion(); |
78 | 78 | |
79 | - [, , $url] = explode('|', $latest_version . '||'); |
|
79 | + [,, $url] = explode('|', $latest_version . '||'); |
|
80 | 80 | |
81 | 81 | return $url; |
82 | 82 | } |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | */ |
232 | 232 | public function changesLogData(Request $request): Response |
233 | 233 | { |
234 | - [$select, , $where, $args1] = $this->changesQuery($request); |
|
234 | + [$select,, $where, $args1] = $this->changesQuery($request); |
|
235 | 235 | [$order_by, $limit, $args2] = $this->dataTablesPagination($request); |
236 | 236 | |
237 | 237 | $rows = Database::prepare( |
@@ -307,7 +307,7 @@ discard block |
||
307 | 307 | */ |
308 | 308 | public function changesLogDownload(Request $request): Response |
309 | 309 | { |
310 | - [$select, , $where, $args] = $this->changesQuery($request); |
|
310 | + [$select,, $where, $args] = $this->changesQuery($request); |
|
311 | 311 | |
312 | 312 | $rows = Database::prepare($select . $where)->execute($args)->fetchAll(); |
313 | 313 |
@@ -214,7 +214,7 @@ |
||
214 | 214 | public static function updateSchema($namespace, $schema_name, $target_version): bool |
215 | 215 | { |
216 | 216 | try { |
217 | - $current_version = (int)Site::getPreference($schema_name); |
|
217 | + $current_version = (int) Site::getPreference($schema_name); |
|
218 | 218 | } catch (PDOException $ex) { |
219 | 219 | // During initial installation, the site_preference table won’t exist. |
220 | 220 | $current_version = 0; |
@@ -243,7 +243,7 @@ |
||
243 | 243 | } |
244 | 244 | } catch (\Exception $ex) { |
245 | 245 | // The module has been deleted or is broken? Disable it. |
246 | - Log::addConfigurationLog("Module {$module_name} is missing or broken - disabling it. " . $ex->getMessage(), null); |
|
246 | + Log::addConfigurationLog("module {$module_name} is missing or broken - disabling it. " . $ex->getMessage(), null); |
|
247 | 247 | Database::prepare( |
248 | 248 | "UPDATE `##module` SET status = 'disabled' WHERE module_name = :module_name" |
249 | 249 | )->execute([ |
@@ -65,7 +65,7 @@ |
||
65 | 65 | |
66 | 66 | extract($cfg, EXTR_OVERWRITE); |
67 | 67 | |
68 | - $stats = new Stats($tree); |
|
68 | + $stats = new Stats($tree); |
|
69 | 69 | |
70 | 70 | switch ($infoStyle) { |
71 | 71 | case 'list': |