@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | /** |
| 62 | - * @return mixed |
|
| 62 | + * @return string |
|
| 63 | 63 | */ |
| 64 | 64 | protected function getTemplateContents() |
| 65 | 65 | { |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | } |
| 79 | 79 | |
| 80 | 80 | /** |
| 81 | - * @return mixed |
|
| 81 | + * @return string |
|
| 82 | 82 | */ |
| 83 | 83 | protected function getDestinationFilePath() |
| 84 | 84 | { |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | } |
| 91 | 91 | |
| 92 | 92 | /** |
| 93 | - * @return mixed|string |
|
| 93 | + * @return string |
|
| 94 | 94 | */ |
| 95 | 95 | private function getModelName() |
| 96 | 96 | { |
@@ -53,8 +53,8 @@ discard block |
||
| 53 | 53 | |
| 54 | 54 | $string = ''; |
| 55 | 55 | foreach ($pieces as $i => $piece) { |
| 56 | - if ($i+1 < count($pieces)) { |
|
| 57 | - $string .= strtolower($piece) . '_'; |
|
| 56 | + if ($i + 1 < count($pieces)) { |
|
| 57 | + $string .= strtolower($piece).'_'; |
|
| 58 | 58 | } else { |
| 59 | 59 | $string .= Str::plural(strtolower($piece)); |
| 60 | 60 | } |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | private function handleOptionalMigrationOption() |
| 96 | 96 | { |
| 97 | 97 | if ($this->option('migration') === true) { |
| 98 | - $migrationName = 'create_' . $this->createMigrationName() . '_table'; |
|
| 98 | + $migrationName = 'create_'.$this->createMigrationName().'_table'; |
|
| 99 | 99 | $this->call('module:make-migration', ['name' => $migrationName, 'module' => $this->argument('module')]); |
| 100 | 100 | } |
| 101 | 101 | } |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | |
| 129 | 129 | $modelPath = GenerateConfigReader::read('model'); |
| 130 | 130 | |
| 131 | - return $path . $modelPath->getPath() . '/' . $this->getModelName() . '.php'; |
|
| 131 | + return $path.$modelPath->getPath().'/'.$this->getModelName().'.php'; |
|
| 132 | 132 | } |
| 133 | 133 | |
| 134 | 134 | /** |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | /** |
| 62 | - * @return mixed |
|
| 62 | + * @return string |
|
| 63 | 63 | */ |
| 64 | 64 | protected function getTemplateContents() |
| 65 | 65 | { |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | /** |
| 76 | - * @return mixed |
|
| 76 | + * @return string |
|
| 77 | 77 | */ |
| 78 | 78 | protected function getDestinationFilePath() |
| 79 | 79 | { |
@@ -69,7 +69,7 @@ |
||
| 69 | 69 | |
| 70 | 70 | $resourcePath = GenerateConfigReader::read('resource'); |
| 71 | 71 | |
| 72 | - return $path . $resourcePath->getPath() . '/' . $this->getFileName() . '.php'; |
|
| 72 | + return $path.$resourcePath->getPath().'/'.$this->getFileName().'.php'; |
|
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | /** |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | /** |
| 62 | - * @return mixed |
|
| 62 | + * @return string |
|
| 63 | 63 | */ |
| 64 | 64 | protected function getTemplateContents() |
| 65 | 65 | { |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | /** |
| 76 | - * @return mixed |
|
| 76 | + * @return string |
|
| 77 | 77 | */ |
| 78 | 78 | protected function getDestinationFilePath() |
| 79 | 79 | { |
@@ -80,7 +80,7 @@ |
||
| 80 | 80 | $testPath = GenerateConfigReader::read('test'); |
| 81 | 81 | } |
| 82 | 82 | |
| 83 | - return $path . $testPath->getPath() . '/' . $this->getFileName() . '.php'; |
|
| 83 | + return $path.$testPath->getPath().'/'.$this->getFileName().'.php'; |
|
| 84 | 84 | } |
| 85 | 85 | |
| 86 | 86 | /** |
@@ -44,7 +44,7 @@ |
||
| 44 | 44 | |
| 45 | 45 | $controllerPath = GenerateConfigReader::read('controller'); |
| 46 | 46 | |
| 47 | - return $path . $controllerPath->getPath() . '/' . $this->getControllerName() . '.php'; |
|
| 47 | + return $path.$controllerPath->getPath().'/'.$this->getControllerName().'.php'; |
|
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | /** |
@@ -87,7 +87,7 @@ |
||
| 87 | 87 | |
| 88 | 88 | $jobPath = GenerateConfigReader::read('jobs'); |
| 89 | 89 | |
| 90 | - return $path . $jobPath->getPath() . '/' . $this->getFileName() . '.php'; |
|
| 90 | + return $path.$jobPath->getPath().'/'.$this->getFileName().'.php'; |
|
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | /** |
@@ -61,7 +61,7 @@ |
||
| 61 | 61 | |
| 62 | 62 | $notificationPath = GenerateConfigReader::read('notifications'); |
| 63 | 63 | |
| 64 | - return $path . $notificationPath->getPath() . '/' . $this->getFileName() . '.php'; |
|
| 64 | + return $path.$notificationPath->getPath().'/'.$this->getFileName().'.php'; |
|
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | /** |
@@ -74,7 +74,7 @@ |
||
| 74 | 74 | |
| 75 | 75 | $mailPath = GenerateConfigReader::read('emails'); |
| 76 | 76 | |
| 77 | - return $path . $mailPath->getPath() . '/' . $this->getFileName() . '.php'; |
|
| 77 | + return $path.$mailPath->getPath().'/'.$this->getFileName().'.php'; |
|
| 78 | 78 | } |
| 79 | 79 | |
| 80 | 80 | /** |
@@ -73,14 +73,14 @@ discard block |
||
| 73 | 73 | |
| 74 | 74 | $namespace = str_replace('/', '\\', $listenerPath->getPath()); |
| 75 | 75 | |
| 76 | - return $this->getClassNamespace($module) . "\\" . $namespace; |
|
| 76 | + return $this->getClassNamespace($module)."\\".$namespace; |
|
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | protected function getEventName(Module $module) |
| 80 | 80 | { |
| 81 | 81 | $eventPath = GenerateConfigReader::read('event'); |
| 82 | 82 | |
| 83 | - return $this->getClassNamespace($module) . "\\" . $eventPath->getPath() . "\\" . $this->option('event'); |
|
| 83 | + return $this->getClassNamespace($module)."\\".$eventPath->getPath()."\\".$this->option('event'); |
|
| 84 | 84 | } |
| 85 | 85 | |
| 86 | 86 | protected function getDestinationFilePath() |
@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | |
| 90 | 90 | $listenerPath = GenerateConfigReader::read('listener'); |
| 91 | 91 | |
| 92 | - return $path . $listenerPath->getPath() . '/' . $this->getFileName() . '.php'; |
|
| 92 | + return $path.$listenerPath->getPath().'/'.$this->getFileName().'.php'; |
|
| 93 | 93 | } |
| 94 | 94 | |
| 95 | 95 | /** |
@@ -86,11 +86,11 @@ |
||
| 86 | 86 | |
| 87 | 87 | $namespace = $this->laravel['modules']->config('namespace'); |
| 88 | 88 | |
| 89 | - $namespace .= '\\' . $module->getStudlyName(); |
|
| 89 | + $namespace .= '\\'.$module->getStudlyName(); |
|
| 90 | 90 | |
| 91 | - $namespace .= '\\' . $this->getDefaultNamespace(); |
|
| 91 | + $namespace .= '\\'.$this->getDefaultNamespace(); |
|
| 92 | 92 | |
| 93 | - $namespace .= '\\' . $extra; |
|
| 93 | + $namespace .= '\\'.$extra; |
|
| 94 | 94 | |
| 95 | 95 | $namespace = str_replace('/', '\\', $namespace); |
| 96 | 96 | |