Completed
Push — master ( 88bae4...1fc56c )
by Nicolas
06:11
created
src/Commands/GenerateProviderCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 
68 68
         $module = $this->laravel['modules']->findOrFail($this->getModuleName());
69 69
 
70
-        return (new Stub('/' . $stub . '.stub', [
70
+        return (new Stub('/'.$stub.'.stub', [
71 71
             'NAMESPACE'         => $this->getClassNamespace($module),
72 72
             'CLASS'             => $this->getClass(),
73 73
             'LOWER_NAME'        => $module->getLowerName(),
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
 
91 91
         $generatorPath = $this->laravel['modules']->config('paths.generator.provider');
92 92
 
93
-        return $path . $generatorPath . '/' . $this->getFileName() . '.php';
93
+        return $path.$generatorPath.'/'.$this->getFileName().'.php';
94 94
     }
95 95
 
96 96
     /**
Please login to merge, or discard this patch.
src/Commands/GenerateListenerCommand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
             "EVENTNAME" => $this->getEventName($module),
63 63
             "EVENTSHORTENEDNAME" => $this->option('event'),
64 64
             "CLASS" => $this->getClass(),
65
-            'DUMMYNAMESPACE' => $this->laravel->getNamespace() . "Events",
65
+            'DUMMYNAMESPACE' => $this->laravel->getNamespace()."Events",
66 66
         ]))->render();
67 67
     }
68 68
 
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 
73 73
         $seederPath = $this->laravel['modules']->config('paths.generator.listener');
74 74
 
75
-        return $path . $seederPath . '/' . $this->getFileName() . '.php';
75
+        return $path.$seederPath.'/'.$this->getFileName().'.php';
76 76
     }
77 77
 
78 78
     /**
@@ -94,13 +94,13 @@  discard block
 block discarded – undo
94 94
 
95 95
     protected function getEventName(Module $module)
96 96
     {
97
-        return $this->getClassNamespace($module) . "\\" . config('modules.paths.generator.event') . "\\" . $this->option('event');
97
+        return $this->getClassNamespace($module)."\\".config('modules.paths.generator.event')."\\".$this->option('event');
98 98
     }
99 99
 
100 100
     private function getNamespace($module)
101 101
     {
102 102
         $namespace = str_replace('/', '\\', config('modules.paths.generator.listener'));
103 103
 
104
-        return $this->getClassNamespace($module) . "\\" . $namespace;
104
+        return $this->getClassNamespace($module)."\\".$namespace;
105 105
     }
106 106
 }
Please login to merge, or discard this patch.
src/Commands/GenerateRouteProviderCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
 
69 69
         $generatorPath = $this->laravel['modules']->config('paths.generator.provider');
70 70
 
71
-        return $path . $generatorPath . '/' . $this->getFileName() . '.php';
71
+        return $path.$generatorPath.'/'.$this->getFileName().'.php';
72 72
     }
73 73
 
74 74
     /**
Please login to merge, or discard this patch.
src/Commands/MakeRequestCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
 
73 73
         $seederPath = $this->laravel['modules']->config('paths.generator.request');
74 74
 
75
-        return $path . $seederPath . '/' . $this->getFileName() . '.php';
75
+        return $path.$seederPath.'/'.$this->getFileName().'.php';
76 76
     }
77 77
 
78 78
     /**
Please login to merge, or discard this patch.
src/Commands/CommandCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
 
82 82
         $seederPath = $this->laravel['modules']->config('paths.generator.command');
83 83
 
84
-        return $path . $seederPath . '/' . $this->getFileName() . '.php';
84
+        return $path.$seederPath.'/'.$this->getFileName().'.php';
85 85
     }
86 86
 
87 87
     /**
Please login to merge, or discard this patch.
src/Commands/MigrateCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
         }
44 44
 
45 45
         foreach ($this->module->getOrdered($this->option('direction')) as $module) {
46
-            $this->line('Running for module: <info>' . $module->getName() . '</info>');
46
+            $this->line('Running for module: <info>'.$module->getName().'</info>');
47 47
 
48 48
             $this->migrate($module);
49 49
         }
Please login to merge, or discard this patch.
src/Commands/GenerateEventCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -57,9 +57,9 @@  discard block
 block discarded – undo
57 57
         $module = $this->laravel['modules']->findOrFail($this->getModuleName());
58 58
 
59 59
         return (new Stub('/event.stub', [
60
-            'NAMESPACE' => $this->getClassNamespace($module) . "\\" . config('modules.paths.generator.event'),
60
+            'NAMESPACE' => $this->getClassNamespace($module)."\\".config('modules.paths.generator.event'),
61 61
             "CLASS" => $this->getClass(),
62
-            'DUMMYNAMESPACE' => $this->laravel->getNamespace() . 'Events',
62
+            'DUMMYNAMESPACE' => $this->laravel->getNamespace().'Events',
63 63
         ]))->render();
64 64
     }
65 65
 
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
         $path = $this->laravel['modules']->getModulePath($this->getModuleName());
69 69
         $seederPath = $this->laravel['modules']->config('paths.generator.event');
70 70
 
71
-        return $path . $seederPath . '/' . $this->getFileName() . '.php';
71
+        return $path.$seederPath.'/'.$this->getFileName().'.php';
72 72
     }
73 73
 
74 74
     /**
Please login to merge, or discard this patch.
src/Commands/MigrateRollbackCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
         }
43 43
 
44 44
         foreach (array_reverse($this->laravel['modules']->all()) as $module) {
45
-            $this->line('Running for module: <info>' . $module->getName() . '</info>');
45
+            $this->line('Running for module: <info>'.$module->getName().'</info>');
46 46
 
47 47
             $this->rollback($module);
48 48
         }
Please login to merge, or discard this patch.
src/Commands/ControllerCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
         $controllerPath = $this->laravel['modules']->config('paths.generator.controller');
44 44
 
45
-        return $path . $controllerPath . '/' . $this->getControllerName() . '.php';
45
+        return $path.$controllerPath.'/'.$this->getControllerName().'.php';
46 46
     }
47 47
 
48 48
     /**
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
         $controller = studly_case($this->argument('controller'));
88 88
 
89 89
         if (!str_contains(strtolower($controller), 'controller')) {
90
-            $controller = $controller . 'Controller';
90
+            $controller = $controller.'Controller';
91 91
         }
92 92
 
93 93
         return $controller;
Please login to merge, or discard this patch.