@@ -275,7 +275,7 @@ discard block |
||
275 | 275 | { |
276 | 276 | if ($this->renderEngine == 'php') { |
277 | 277 | $view = new View(); |
278 | - return $view->renderPhpFile(rtrim($this->getFolder(), DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR . FileHelper::ensureExtension($file, 'php'), $args); |
|
278 | + return $view->renderPhpFile(rtrim($this->getFolder(), DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR.FileHelper::ensureExtension($file, 'php'), $args); |
|
279 | 279 | } elseif ($this->renderEngine == 'twig') { |
280 | 280 | // @deprecated 1.0.0-RC2 Marked as deprecated and will be removed on 1.0.0 release. |
281 | 281 | trigger_error('twig render engine is not supported anymore.', E_USER_DEPRECATED); |
@@ -283,6 +283,6 @@ discard block |
||
283 | 283 | return $twig->render(FileHelper::ensureExtension($file, 'twig'), $args); |
284 | 284 | } |
285 | 285 | |
286 | - throw new Exception('Not supported render engine: ' . $this->renderEngine); |
|
286 | + throw new Exception('Not supported render engine: '.$this->renderEngine); |
|
287 | 287 | } |
288 | 288 | } |
@@ -36,15 +36,15 @@ |
||
36 | 36 | public function run($app) |
37 | 37 | { |
38 | 38 | foreach ($app->getApplicationModules() as $id => $module) { |
39 | - $folder = $module->basePath . DIRECTORY_SEPARATOR . 'commands'; |
|
39 | + $folder = $module->basePath.DIRECTORY_SEPARATOR.'commands'; |
|
40 | 40 | if (file_exists($folder) && is_dir($folder)) { |
41 | 41 | foreach (FileHelper::findFiles($folder) as $file) { |
42 | 42 | |
43 | - $module->controllerNamespace = $module->namespace . '\commands'; |
|
43 | + $module->controllerNamespace = $module->namespace.'\commands'; |
|
44 | 44 | |
45 | - $className = '\\'.$module->getNamespace().'\\commands\\' . pathinfo($file, PATHINFO_FILENAME); |
|
45 | + $className = '\\'.$module->getNamespace().'\\commands\\'.pathinfo($file, PATHINFO_FILENAME); |
|
46 | 46 | |
47 | - $command = str_replace('-controller', '', $module->id . '/' . Inflector::camel2id(pathinfo($file, PATHINFO_FILENAME))); |
|
47 | + $command = str_replace('-controller', '', $module->id.'/'.Inflector::camel2id(pathinfo($file, PATHINFO_FILENAME))); |
|
48 | 48 | |
49 | 49 | Yii::$app->controllerMap[$command] = ['class' => $className]; |
50 | 50 | } |
@@ -278,6 +278,6 @@ |
||
278 | 278 | */ |
279 | 279 | public function getControllerPath() |
280 | 280 | { |
281 | - return Yii::getAlias('@' . str_replace('\\', '/', $this->controllerNamespace), false); |
|
281 | + return Yii::getAlias('@'.str_replace('\\', '/', $this->controllerNamespace), false); |
|
282 | 282 | } |
283 | 283 | } |
@@ -164,18 +164,18 @@ |
||
164 | 164 | } |
165 | 165 | |
166 | 166 | foreach ($this->getLog() as $section => $value) { |
167 | - $this->outputInfo(PHP_EOL . $section . ":"); |
|
167 | + $this->outputInfo(PHP_EOL.$section.":"); |
|
168 | 168 | foreach ($value as $k => $v) { |
169 | 169 | if (is_array($v)) { |
170 | 170 | foreach ($v as $kk => $kv) { |
171 | 171 | if (is_array($kv)) { |
172 | - $this->output(" - {$kk}: " . print_r($kv, true)); |
|
172 | + $this->output(" - {$kk}: ".print_r($kv, true)); |
|
173 | 173 | } else { |
174 | 174 | $this->output(" - {$kk}: {$kv}"); |
175 | 175 | } |
176 | 176 | } |
177 | 177 | } else { |
178 | - $this->output(" - " . $v); |
|
178 | + $this->output(" - ".$v); |
|
179 | 179 | } |
180 | 180 | } |
181 | 181 | } |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | public static function search(array $array, $searchText, $sensitive = false) |
97 | 97 | { |
98 | 98 | $function = ($sensitive) ? 'strpos' : 'stripos'; |
99 | - return array_filter($array, function ($item) use ($searchText, $function) { |
|
99 | + return array_filter($array, function($item) use ($searchText, $function) { |
|
100 | 100 | $response = false; |
101 | 101 | foreach ($item as $key => $value) { |
102 | 102 | if ($response) { |
@@ -136,6 +136,6 @@ discard block |
||
136 | 136 | { |
137 | 137 | $key = array_search($search, array_column($array, $column)); |
138 | 138 | |
139 | - return ($key !== false) ? $array[$key] : false; |
|
139 | + return ($key !== false) ? $array[$key] : false; |
|
140 | 140 | } |
141 | 141 | } |