Completed
Push — master ( bc87d5...f777a6 )
by Nicolas
03:58
created
src/Commands/SeedCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
         $name = $module->getName();
102 102
         $config = $module->get('migration');
103 103
         if (is_array($config) && array_key_exists('seeds', $config)) {
104
-            foreach ((array)$config['seeds'] as $class) {
104
+            foreach ((array) $config['seeds'] as $class) {
105 105
                 if (class_exists($class)) {
106 106
                     $seeders[] = $class;
107 107
                 }
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
         $seederPath = GenerateConfigReader::read('seeder');
157 157
         $seederPath = str_replace('/', '\\', $seederPath->getPath());
158 158
 
159
-        return $namespace . '\\' . $name . '\\' . $seederPath . '\\' . $name . 'DatabaseSeeder';
159
+        return $namespace.'\\'.$name.'\\'.$seederPath.'\\'.$name.'DatabaseSeeder';
160 160
     }
161 161
 
162 162
     /**
Please login to merge, or discard this patch.