@@ -65,7 +65,7 @@ |
||
65 | 65 | |
66 | 66 | $mailPath = $this->laravel['modules']->config('paths.generator.mail'); |
67 | 67 | |
68 | - return $path . $mailPath . '/' . $this->getFileName() . '.php'; |
|
68 | + return $path.$mailPath.'/'.$this->getFileName().'.php'; |
|
69 | 69 | } |
70 | 70 | |
71 | 71 | /** |
@@ -65,7 +65,7 @@ |
||
65 | 65 | |
66 | 66 | $mailPath = $this->laravel['modules']->config('paths.generator.mail'); |
67 | 67 | |
68 | - return $path . $mailPath . '/' . $this->getFileName() . '.php'; |
|
68 | + return $path.$mailPath.'/'.$this->getFileName().'.php'; |
|
69 | 69 | } |
70 | 70 | |
71 | 71 | /** |
@@ -55,8 +55,8 @@ discard block |
||
55 | 55 | foreach ($this->module->getOrdered() as $module) { |
56 | 56 | $name = $module->getName(); |
57 | 57 | $config = $module->get('migrate'); |
58 | - if(is_array($config) && array_key_exists('seeds', $config)) { |
|
59 | - foreach((array)$config['seeds'] as $class) { |
|
58 | + if (is_array($config) && array_key_exists('seeds', $config)) { |
|
59 | + foreach ((array) $config['seeds'] as $class) { |
|
60 | 60 | if (class_exists($class)) { |
61 | 61 | $this->dbseed($class); |
62 | 62 | } else { |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | |
112 | 112 | $namespace = $this->laravel['modules']->config('namespace'); |
113 | 113 | |
114 | - return $namespace . '\\' . $name . '\Database\Seeders\\' . $name . 'DatabaseSeeder'; |
|
114 | + return $namespace.'\\'.$name.'\Database\Seeders\\'.$name.'DatabaseSeeder'; |
|
115 | 115 | } |
116 | 116 | |
117 | 117 | /** |