@@ -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; |
@@ -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': |
@@ -40,7 +40,7 @@ |
||
| 40 | 40 | ])->delete(); |
| 41 | 41 | |
| 42 | 42 | // Increase the password column from 64 to 128 characters |
| 43 | - DB::schema()->table('user', function(Blueprint $table) { |
|
| 43 | + DB::schema()->table('user', function (Blueprint $table) { |
|
| 44 | 44 | $table->string('password', 128)->change(); |
| 45 | 45 | }); |
| 46 | 46 | } |