Completed
Pull Request — master (#713)
by
unknown
03:33
created
src/LaravelModulesServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,9 +30,9 @@  discard block
 block discarded – undo
30 30
      */
31 31
     public function setupStubPath()
32 32
     {
33
-        Stub::setBasePath(__DIR__ . '/Commands/stubs');
33
+        Stub::setBasePath(__DIR__.'/Commands/stubs');
34 34
 
35
-        $this->app->booted(function ($app) {
35
+        $this->app->booted(function($app) {
36 36
             if ($app['modules']->config('stubs.enabled') === true) {
37 37
                 Stub::setBasePath($app['modules']->config('stubs.path'));
38 38
             }
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
      */
45 45
     protected function registerServices()
46 46
     {
47
-        $this->app->singleton(Contracts\RepositoryInterface::class, function ($app) {
47
+        $this->app->singleton(Contracts\RepositoryInterface::class, function($app) {
48 48
             $path = $app['config']->get('modules.paths.modules');
49 49
 
50 50
             return new Laravel\LaravelFileRepository($app, $path);
Please login to merge, or discard this patch.
src/Module.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
     {
191 191
         $lowerName = $this->getLowerName();
192 192
 
193
-        $langPath = $this->getPath() . '/Resources/lang';
193
+        $langPath = $this->getPath().'/Resources/lang';
194 194
 
195 195
         if (is_dir($langPath)) {
196 196
             $this->loadTranslationsFrom($langPath, $lowerName);
@@ -210,8 +210,8 @@  discard block
 block discarded – undo
210 210
             $file = 'module.json';
211 211
         }
212 212
 
213
-        return array_get($this->moduleJson, $file, function () use ($file) {
214
-            return $this->moduleJson[$file] = new Json($this->getPath() . '/' . $file, $this->app['files']);
213
+        return array_get($this->moduleJson, $file, function() use ($file) {
214
+            return $this->moduleJson[$file] = new Json($this->getPath().'/'.$file, $this->app['files']);
215 215
         });
216 216
     }
217 217
 
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
      */
265 265
     protected function fireEvent($event)
266 266
     {
267
-        $this->app['events']->dispatch(sprintf('modules.%s.' . $event, $this->getLowerName()), [$this]);
267
+        $this->app['events']->dispatch(sprintf('modules.%s.'.$event, $this->getLowerName()), [$this]);
268 268
     }
269 269
     /**
270 270
      * Register the aliases from this module.
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
     protected function registerFiles()
290 290
     {
291 291
         foreach ($this->get('files', []) as $file) {
292
-            include $this->path . '/' . $file;
292
+            include $this->path.'/'.$file;
293 293
         }
294 294
     }
295 295
 
@@ -390,7 +390,7 @@  discard block
 block discarded – undo
390 390
      */
391 391
     public function getExtraPath(string $path) : string
392 392
     {
393
-        return $this->getPath() . '/' . $path;
393
+        return $this->getPath().'/'.$path;
394 394
     }
395 395
 
396 396
     /**
Please login to merge, or discard this patch.
config/config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 
25 25
     'stubs' => [
26 26
         'enabled' => false,
27
-        'path' => base_path() . '/vendor/nwidart/laravel-modules/src/Commands/stubs',
27
+        'path' => base_path().'/vendor/nwidart/laravel-modules/src/Commands/stubs',
28 28
         'files' => [
29 29
             'routes/web' => 'Routes/web.php',
30 30
             'routes/api' => 'Routes/api.php',
Please login to merge, or discard this patch.
src/Commands/RouteProviderMakeCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 
79 79
         $generatorPath = GenerateConfigReader::read('provider');
80 80
 
81
-        return $path . $generatorPath->getPath() . '/' . $this->getFileName() . '.php';
81
+        return $path.$generatorPath->getPath().'/'.$this->getFileName().'.php';
82 82
     }
83 83
 
84 84
     /**
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
      */
87 87
     protected function getWebRoutesPath()
88 88
     {
89
-        return '/' . $this->laravel['config']->get('stubs.files.routes', 'Routes/web.php');
89
+        return '/'.$this->laravel['config']->get('stubs.files.routes', 'Routes/web.php');
90 90
     }
91 91
 
92 92
     /**
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
      */
95 95
     protected function getApiRoutesPath()
96 96
     {
97
-        return '/' . $this->laravel['config']->get('stubs.files.routes', 'Routes/api.php');
97
+        return '/'.$this->laravel['config']->get('stubs.files.routes', 'Routes/api.php');
98 98
     }
99 99
 
100 100
     public function getDefaultNamespace() : string
Please login to merge, or discard this patch.
src/Commands/SeedCommand.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
         $name = $module->getName();
98 98
         $config = $module->get('migration');
99 99
         if (is_array($config) && array_key_exists('seeds', $config)) {
100
-            foreach ((array)$config['seeds'] as $class) {
100
+            foreach ((array) $config['seeds'] as $class) {
101 101
                 if (class_exists($class)) {
102 102
                     $seeders[] = $class;
103 103
                 }
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
             } else {
110 110
                 //look at other namespaces
111 111
                 $classes = $this->getSeederNames($name);
112
-                foreach($classes as $class) {
112
+                foreach ($classes as $class) {
113 113
                     if (class_exists($class)) {
114 114
                         $seeders[] = $class;
115 115
                     } 
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
     protected function dbSeed($className)
132 132
     {
133 133
         if ($option = $this->option('class')) {
134
-            $params['--class'] = Str::finish(substr($className, 0, strrpos($className, '\\')), '\\') . $option;
134
+            $params['--class'] = Str::finish(substr($className, 0, strrpos($className, '\\')), '\\').$option;
135 135
         } else {
136 136
             $params = ['--class' => $className];
137 137
         }
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
         $seederPath = GenerateConfigReader::read('seeder');
163 163
         $seederPath = str_replace('/', '\\', $seederPath->getPath());
164 164
 
165
-        return $namespace . '\\' . $name . '\\' . $seederPath . '\\' . $name . 'DatabaseSeeder';
165
+        return $namespace.'\\'.$name.'\\'.$seederPath.'\\'.$name.'DatabaseSeeder';
166 166
     }
167 167
     
168 168
     /**
@@ -180,9 +180,9 @@  discard block
 block discarded – undo
180 180
         $seederPath = str_replace('/', '\\', $seederPath->getPath());
181 181
 
182 182
         $foundModules = [];
183
-        foreach($this->laravel['modules']->config('scan.paths') as $path) {
183
+        foreach ($this->laravel['modules']->config('scan.paths') as $path) {
184 184
             $namespace = array_slice(explode('/', $path), -1)[0];
185
-            $foundModules[] = $namespace. '\\' . $name . '\\' . $seederPath . '\\' . $name . 'DatabaseSeeder';
185
+            $foundModules[] = $namespace.'\\'.$name.'\\'.$seederPath.'\\'.$name.'DatabaseSeeder';
186 186
         }
187 187
 
188 188
         return $foundModules;
Please login to merge, or discard this patch.