Completed
Push — master ( 54b42c...81f5ae )
by Nicolas
26:28
created
src/Commands/RouteProviderMakeCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 
77 77
         $generatorPath = GenerateConfigReader::read('provider');
78 78
 
79
-        return $path . $generatorPath->getPath() . '/' . $this->getFileName() . '.php';
79
+        return $path.$generatorPath->getPath().'/'.$this->getFileName().'.php';
80 80
     }
81 81
 
82 82
     /**
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
      */
85 85
     protected function getRoutesPath()
86 86
     {
87
-        return '/' . $this->laravel['config']->get('stubs.files.routes', 'Http/routes.php');
87
+        return '/'.$this->laravel['config']->get('stubs.files.routes', 'Http/routes.php');
88 88
     }
89 89
 
90 90
     public function getDefaultNamespace() : string
Please login to merge, or discard this patch.
src/Commands/GeneratorCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -86,11 +86,11 @@
 block discarded – undo
86 86
 
87 87
         $namespace = $this->laravel['modules']->config('namespace');
88 88
 
89
-        $namespace .= '\\' . $module->getStudlyName();
89
+        $namespace .= '\\'.$module->getStudlyName();
90 90
 
91
-        $namespace .= '\\' . $this->getDefaultNamespace();
91
+        $namespace .= '\\'.$this->getDefaultNamespace();
92 92
 
93
-        $namespace .= '\\' . $extra;
93
+        $namespace .= '\\'.$extra;
94 94
 
95 95
         $namespace = str_replace('/', '\\', $namespace);
96 96
 
Please login to merge, or discard this patch.
src/Commands/EventMakeCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,11 +39,11 @@
 block discarded – undo
39 39
 
40 40
     public function getDestinationFilePath()
41 41
     {
42
-        $path       = $this->laravel['modules']->getModulePath($this->getModuleName());
42
+        $path = $this->laravel['modules']->getModulePath($this->getModuleName());
43 43
 
44 44
         $eventPath = GenerateConfigReader::read('event');
45 45
 
46
-        return $path . $eventPath->getPath() . '/' . $this->getFileName() . '.php';
46
+        return $path.$eventPath->getPath().'/'.$this->getFileName().'.php';
47 47
     }
48 48
 
49 49
     /**
Please login to merge, or discard this patch.