Passed
Push — main ( 0ba104...db6621 )
by Thierry
03:02
created
src/Db/Facades/ExportFacade.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -619,8 +619,7 @@
 block discarded – undo
619 619
         foreach (array_unique(array_merge($databases['list'], $databases['data'])) as $database) {
620 620
             try {
621 621
                 $this->dumpDatabase($database);
622
-            }
623
-            catch (Exception $e) {
622
+            } catch (Exception $e) {
624 623
                 return $e->getMessage();
625 624
             }
626 625
         }
Please login to merge, or discard this patch.
src/Admin/Admin.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -145,8 +145,7 @@
 block discarded – undo
145 145
         }
146 146
         if ($this->isMail($value)) {
147 147
             return '<a href="' . $this->utils->html("mailto:$value") . '">' . $value . '</a>';
148
-        }
149
-        elseif ($this->isUrl($value)) {
148
+        } elseif ($this->isUrl($value)) {
150 149
             // IE 11 and all modern browsers hide referrer
151 150
             return '<a href="' . $this->utils->html($value) . '"' . $this->blankTarget() . '>' . $value . '</a>';
152 151
         }
Please login to merge, or discard this patch.
src/Db/Facades/CommandFacade.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -208,8 +208,7 @@
 block discarded – undo
208 208
             try {
209 209
                 ini_set('memory_limit', max($this->admin->iniBytes('memory_limit'),
210 210
                     2 * strlen($queries) + memory_get_usage() + 8e6));
211
-            }
212
-            catch(\Exception $e) {
211
+            } catch(\Exception $e) {
213 212
                 // Do nothing if the option is not modified.
214 213
             }
215 214
         }
Please login to merge, or discard this patch.