Completed
Push — master ( b11228...9eed5d )
by Nicolas
02:19
created
src/Commands/FactoryMakeCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 
63 63
         $factoryPath = $this->laravel['modules']->config('paths.generator.factory', 'Database/factories');
64 64
 
65
-        return $path . $factoryPath  . '/' . $this->getFileName();
65
+        return $path.$factoryPath.'/'.$this->getFileName();
66 66
     }
67 67
 
68 68
     /**
@@ -70,6 +70,6 @@  discard block
 block discarded – undo
70 70
      */
71 71
     private function getFileName()
72 72
     {
73
-        return Str::studly($this->argument('name')) . '.php';
73
+        return Str::studly($this->argument('name')).'.php';
74 74
     }
75 75
 }
Please login to merge, or discard this patch.