Completed
Pull Request — master (#1571)
by
unknown
06:52
created
src/Commands/ModelMakeCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     private function handleOptionalMigrationOption()
95 95
     {
96 96
         if ($this->option('migration') === true) {
97
-            $migrationName = 'create_' . $this->createMigrationName() . '_table';
97
+            $migrationName = 'create_'.$this->createMigrationName().'_table';
98 98
             $this->call('module:make-migration', ['name' => $migrationName, 'module' => $this->argument('module')]);
99 99
         }
100 100
     }
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
 
177 177
         $modelPath = GenerateConfigReader::read('model');
178 178
 
179
-        return $path . $modelPath->getPath() . '/' . $this->getModelName() . '.php';
179
+        return $path.$modelPath->getPath().'/'.$this->getModelName().'.php';
180 180
     }
181 181
 
182 182
     /**
Please login to merge, or discard this patch.