Completed
Pull Request — master (#713)
by
unknown
03:33
created
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.