@@ -85,10 +85,10 @@ discard block |
||
85 | 85 | |
86 | 86 | $output = null; |
87 | 87 | if ($generateHeader) { |
88 | - $output.= self::generateRow($header, $delimiter, '"'); |
|
88 | + $output .= self::generateRow($header, $delimiter, '"'); |
|
89 | 89 | } |
90 | 90 | foreach ($rows as $row) { |
91 | - $output.= self::generateRow($row, $delimiter, '"'); |
|
91 | + $output .= self::generateRow($row, $delimiter, '"'); |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | return $output; |
@@ -104,13 +104,13 @@ discard block |
||
104 | 104 | */ |
105 | 105 | protected static function generateRow(array $row, $delimiter, $enclose) |
106 | 106 | { |
107 | - array_walk($row, function (&$item) use ($enclose) { |
|
107 | + array_walk($row, function(&$item) use ($enclose) { |
|
108 | 108 | if (!is_scalar($item)) { |
109 | 109 | $item = "array"; |
110 | 110 | } |
111 | 111 | $item = $enclose.Html::encode($item).$enclose; |
112 | 112 | }); |
113 | 113 | |
114 | - return implode($delimiter, $row) . PHP_EOL; |
|
114 | + return implode($delimiter, $row).PHP_EOL; |
|
115 | 115 | } |
116 | 116 | } |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | */ |
30 | 30 | public function actionConfigInfo() |
31 | 31 | { |
32 | - $this->outputInfo("dev config file: " . Yii::getAlias($this->configFile)); |
|
32 | + $this->outputInfo("dev config file: ".Yii::getAlias($this->configFile)); |
|
33 | 33 | |
34 | 34 | $config = $this->readConfig(); |
35 | 35 | |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | $save = FileHelper::writeFile($this->configFile, Json::encode($content)); |
92 | 92 | |
93 | 93 | if (!$save) { |
94 | - return $this->outputError("Unable to find config file " . $this->configFile. ". Please create and provide Permissions."); |
|
94 | + return $this->outputError("Unable to find config file ".$this->configFile.". Please create and provide Permissions."); |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | return $value; |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | // generate summary overview |
101 | 101 | foreach ($this->repos as $repo) { |
102 | 102 | $newRepoHome = $this->getFilesystemRepoPath($repo); |
103 | - if (file_exists($newRepoHome . DIRECTORY_SEPARATOR . '.git')) { |
|
103 | + if (file_exists($newRepoHome.DIRECTORY_SEPARATOR.'.git')) { |
|
104 | 104 | $summary[] = $this->summaryItem($repo, false, true); |
105 | 105 | } elseif ($this->forkExists($username, $repo)) { |
106 | 106 | $summary[] = $this->summaryItem($repo, true, false); |
@@ -196,13 +196,13 @@ discard block |
||
196 | 196 | |
197 | 197 | $this->saveConfig(self::CONFIG_VAR_CUSTOMCLONES, $clones); |
198 | 198 | |
199 | - $composerReader = new ComposerReader($repoFileSystemPath . DIRECTORY_SEPARATOR . 'composer.json'); |
|
199 | + $composerReader = new ComposerReader($repoFileSystemPath.DIRECTORY_SEPARATOR.'composer.json'); |
|
200 | 200 | |
201 | 201 | if ($composerReader->canRead()) { |
202 | 202 | $section = new AutoloadSection($composerReader); |
203 | 203 | $autoloaders = []; |
204 | 204 | foreach ($section as $autoload) { |
205 | - $newSrc = $repoFileSystemPath . DIRECTORY_SEPARATOR . $autoload->source; |
|
205 | + $newSrc = $repoFileSystemPath.DIRECTORY_SEPARATOR.$autoload->source; |
|
206 | 206 | $autoloaders[] = ['autoload' => $autoload, 'src' => $newSrc]; |
207 | 207 | } |
208 | 208 | |
@@ -245,7 +245,7 @@ discard block |
||
245 | 245 | */ |
246 | 246 | protected function getProjectComposerReader() |
247 | 247 | { |
248 | - return new ComposerReader(getcwd() . DIRECTORY_SEPARATOR . 'composer.json'); |
|
248 | + return new ComposerReader(getcwd().DIRECTORY_SEPARATOR.'composer.json'); |
|
249 | 249 | } |
250 | 250 | |
251 | 251 | private $_gitWrapper; |
@@ -282,7 +282,7 @@ discard block |
||
282 | 282 | */ |
283 | 283 | private function getFilesystemRepoPath($repo) |
284 | 284 | { |
285 | - return 'repos' . DIRECTORY_SEPARATOR . $repo; |
|
285 | + return 'repos'.DIRECTORY_SEPARATOR.$repo; |
|
286 | 286 | } |
287 | 287 | |
288 | 288 | /** |
@@ -266,7 +266,7 @@ discard block |
||
266 | 266 | } |
267 | 267 | } catch (InvalidParamException $e) { |
268 | 268 | try { |
269 | - $staticPath = static::staticBasePath() . DIRECTORY_SEPARATOR . 'controllers'; |
|
269 | + $staticPath = static::staticBasePath().DIRECTORY_SEPARATOR.'controllers'; |
|
270 | 270 | foreach (FileHelper::findFiles($staticPath) as $file) { |
271 | 271 | $files[$this->fileToName($staticPath, $file)] = $file; |
272 | 272 | } |
@@ -294,7 +294,7 @@ discard block |
||
294 | 294 | */ |
295 | 295 | public function getControllerPath() |
296 | 296 | { |
297 | - return Yii::getAlias('@' . str_replace('\\', '/', $this->controllerNamespace), false); |
|
297 | + return Yii::getAlias('@'.str_replace('\\', '/', $this->controllerNamespace), false); |
|
298 | 298 | } |
299 | 299 | |
300 | 300 | // STATIC METHODS |
@@ -332,7 +332,7 @@ discard block |
||
332 | 332 | */ |
333 | 333 | public static function registerTranslation($prefix, $basePath, array $fileMap) |
334 | 334 | { |
335 | - if(!isset(Yii::$app->i18n->translations[$prefix])){ |
|
335 | + if (!isset(Yii::$app->i18n->translations[$prefix])) { |
|
336 | 336 | Yii::$app->i18n->translations[$prefix] = [ |
337 | 337 | 'class' => 'yii\i18n\PhpMessageSource', |
338 | 338 | 'basePath' => $basePath, |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | case 'cn': |
128 | 128 | return 'cn_CN'; |
129 | 129 | default: |
130 | - return strtolower($lang) . '_' . strtoupper($lang); |
|
130 | + return strtolower($lang).'_'.strtoupper($lang); |
|
131 | 131 | } |
132 | 132 | } |
133 | 133 | |
@@ -182,7 +182,7 @@ discard block |
||
182 | 182 | public function getWebroot() |
183 | 183 | { |
184 | 184 | if ($this->_webroot === null) { |
185 | - $this->_webroot = realpath(realpath($this->basePath) . DIRECTORY_SEPARATOR . $this->webrootDirectory); |
|
185 | + $this->_webroot = realpath(realpath($this->basePath).DIRECTORY_SEPARATOR.$this->webrootDirectory); |
|
186 | 186 | } |
187 | 187 | |
188 | 188 | return $this->_webroot; |