Completed
Push — master ( 418450...8d1efe )
by
unknown
07:19 queued 30s
created
src/Commands/CheckLangCommand.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -193,8 +193,7 @@
 block discarded – undo
193 193
         if (\File::exists($file)) {
194 194
             $lang = \File::getRequire($file);
195 195
             return collect(\Arr::dot($lang))->keys();
196
-        }
197
-        else {
196
+        } else {
198 197
             return FALSE;
199 198
         }
200 199
     }
Please login to merge, or discard this patch.
src/Commands/SeedCommand.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -38,15 +38,13 @@
 block discarded – undo
38 38
         $this->components->task("Seeding <fg=cyan;options=bold>{$module->getName()}</> Module", function () use ($module) {
39 39
             try {
40 40
                 $this->moduleSeed($module);
41
-            }
42
-            catch (\Error $e) {
41
+            } catch (\Error $e) {
43 42
                 $e = new ErrorException($e->getMessage(), $e->getCode(), 1, $e->getFile(), $e->getLine(), $e);
44 43
                 $this->reportException($e);
45 44
                 $this->renderException($this->getOutput(), $e);
46 45
 
47 46
                 return FALSE;
48
-            }
49
-            catch (\Exception $e) {
47
+            } catch (\Exception $e) {
50 48
                 $this->reportException($e);
51 49
                 $this->renderException($this->getOutput(), $e);
52 50
 
Please login to merge, or discard this patch.