@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function getCachedServicesPath() |
14 | 14 | { |
15 | - return Str::replaceLast('services.php', $this->getSnakeName() . '_module.php', $this->app->basePath('storage/app/') . 'services.php'); |
|
15 | + return Str::replaceLast('services.php', $this->getSnakeName().'_module.php', $this->app->basePath('storage/app/').'services.php'); |
|
16 | 16 | } |
17 | 17 | |
18 | 18 | /** |
@@ -43,7 +43,7 @@ |
||
43 | 43 | */ |
44 | 44 | protected function registerNamespaces() |
45 | 45 | { |
46 | - $configPath = __DIR__ . '/../config/config.php'; |
|
46 | + $configPath = __DIR__.'/../config/config.php'; |
|
47 | 47 | |
48 | 48 | $this->mergeConfigFrom($configPath, 'modules'); |
49 | 49 | $this->publishes([ |
@@ -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 | /** |
@@ -78,7 +78,7 @@ |
||
78 | 78 | |
79 | 79 | $requestPath = GenerateConfigReader::read('request'); |
80 | 80 | |
81 | - return $path . $requestPath->getPath() . '/' . $this->getFileName() . '.php'; |
|
81 | + return $path.$requestPath->getPath().'/'.$this->getFileName().'.php'; |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | /** |
@@ -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 | /** |
@@ -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 | /** |
@@ -76,7 +76,7 @@ |
||
76 | 76 | |
77 | 77 | $rulePath = GenerateConfigReader::read('rules'); |
78 | 78 | |
79 | - return $path . $rulePath->getPath() . '/' . $this->getFileName() . '.php'; |
|
79 | + return $path.$rulePath->getPath().'/'.$this->getFileName().'.php'; |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | /** |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | |
64 | 64 | $factoryPath = GenerateConfigReader::read('factory'); |
65 | 65 | |
66 | - return $path . $factoryPath->getPath() . '/' . $this->getFileName(); |
|
66 | + return $path.$factoryPath->getPath().'/'.$this->getFileName(); |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | /** |
@@ -71,6 +71,6 @@ discard block |
||
71 | 71 | */ |
72 | 72 | private function getFileName() |
73 | 73 | { |
74 | - return Str::studly($this->argument('name')) . '.php'; |
|
74 | + return Str::studly($this->argument('name')).'.php'; |
|
75 | 75 | } |
76 | 76 | } |