Completed
Pull Request — master (#940)
by
unknown
02:26
created
src/Commands/EnableCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         /**
31 31
          * check if user entred an argument
32 32
          */
33
-        if( $this->argument('module') == null )
33
+        if ($this->argument('module') == null)
34 34
         {
35 35
             $this->enableAll();
36 36
         }
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
         /** @var Modules $modules */
58 58
         $modules = $this->laravel['modules']->all();
59 59
 
60
-        foreach( $modules as $module )
60
+        foreach ($modules as $module)
61 61
         {
62 62
             if ($module->isDisabled()) {
63 63
                 $module->enable();
Please login to merge, or discard this patch.
src/Commands/DisableCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         /**
31 31
          * check if user entred an argument
32 32
          */
33
-        if( $this->argument('module') == null )
33
+        if ($this->argument('module') == null)
34 34
         {
35 35
             $this->disableAll();
36 36
         }
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
         /** @var Modules $modules */
58 58
         $modules = $this->laravel['modules']->all();
59 59
 
60
-        foreach( $modules as $module )
60
+        foreach ($modules as $module)
61 61
         {
62 62
             if ($module->isEnabled()) {
63 63
                 $module->disable();
Please login to merge, or discard this patch.