Passed
Push — analysis-XNKRYr ( f2e5bc )
by Greg
08:49
created
app/Mail.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
app/Services/UpgradeService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
app/Http/Controllers/AdminController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
app/Database.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -214,7 +214,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
app/Module/TopGivenNamesModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
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':
Please login to merge, or discard this patch.
app/Http/Controllers/SetupController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -432,11 +432,11 @@
 block discarded – undo
432 432
             /* I18N: a program feature */
433 433
             'simplexml' => I18N::translate('reporting'),
434 434
         ];
435
-        $settings   = [
435
+        $settings = [
436 436
             /* I18N: a program feature */
437 437
             'file_uploads' => I18N::translate('file upload capability'),
438 438
         ];
439
-        $warnings   = [];
439
+        $warnings = [];
440 440
 
441 441
         foreach ($extensions as $extension => $features) {
442 442
             if (!extension_loaded($extension)) {
Please login to merge, or discard this patch.
app/Module.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@
 block discarded – undo
158 158
                     $modules[$module->getName()] = $module;
159 159
                 } else {
160 160
                     // The module has been deleted or is broken? Disable it.
161
-                    Log::addConfigurationLog("Module {$module_name} is missing or broken - disabling it. ", null);
161
+                    Log::addConfigurationLog("module {$module_name} is missing or broken - disabling it. ", null);
162 162
                     DB::table('module')
163 163
                         ->where('module_name', '=', $module_name)
164 164
                         ->update(['status' => 'disabled']);
Please login to merge, or discard this patch.