Completed
Pull Request — master (#521)
by
unknown
06:30
created
config/config.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 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
             'start' => 'start.php',
30 30
             'routes' => 'Http/routes.php',
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
             'webpack' => ['LOWER_NAME'],
44 44
             'json' => ['LOWER_NAME', 'STUDLY_NAME', 'MODULE_NAMESPACE'],
45 45
             'views/index' => ['LOWER_NAME'],
46
-            'views/master' => ['STUDLY_NAME','LOWER_NAME'],
46
+            'views/master' => ['STUDLY_NAME', 'LOWER_NAME'],
47 47
             'scaffold/config' => ['STUDLY_NAME'],
48 48
             'composer' => [
49 49
                 'LOWER_NAME',
Please login to merge, or discard this patch.
src/Commands/SeedMakeCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 
87 87
         $seederPath = GenerateConfigReader::read('seeder');
88 88
 
89
-        return $path . $seederPath->getPath() . '/' . $this->getSeederName() . '.php';
89
+        return $path.$seederPath->getPath().'/'.$this->getSeederName().'.php';
90 90
     }
91 91
 
92 92
     /**
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
     {
99 99
         $end = $this->option('master') ? 'DatabaseSeeder' : 'TableSeeder';
100 100
 
101
-        return Str::studly($this->argument('name')) . $end;
101
+        return Str::studly($this->argument('name')).$end;
102 102
     }
103 103
 
104 104
     /**
Please login to merge, or discard this patch.