Completed
Push — master ( fd4d50...e6c1a2 )
by Martin
03:09
created
core/helpers/ExportHelper.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -85,10 +85,10 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
dev/BaseDevCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
core/base/Module.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
             }
230 230
         } catch (InvalidParamException $e) {
231 231
             try {
232
-                $staticPath = static::staticBasePath() . DIRECTORY_SEPARATOR . 'controllers';
232
+                $staticPath = static::staticBasePath().DIRECTORY_SEPARATOR.'controllers';
233 233
                 foreach (FileHelper::findFiles($staticPath) as $file) {
234 234
                     $files[$this->fileToName($staticPath, $file)] = $file;
235 235
                 }
@@ -257,7 +257,7 @@  discard block
 block discarded – undo
257 257
      */
258 258
     public function getControllerPath()
259 259
     {
260
-        return Yii::getAlias('@' . str_replace('\\', '/', $this->controllerNamespace), false);
260
+        return Yii::getAlias('@'.str_replace('\\', '/', $this->controllerNamespace), false);
261 261
     }
262 262
 
263 263
     // STATIC METHODS
Please login to merge, or discard this patch.
core/traits/ApplicationTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
dev/RepoController.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
             
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
      */
249 249
     protected function getProjectComposerReader()
250 250
     {
251
-        return new ComposerReader(getcwd() . DIRECTORY_SEPARATOR . 'composer.json');
251
+        return new ComposerReader(getcwd().DIRECTORY_SEPARATOR.'composer.json');
252 252
     }
253 253
     
254 254
     private $_gitWrapper;
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
      */
286 286
     private function getFilesystemRepoPath($repo)
287 287
     {
288
-        return 'repos' . DIRECTORY_SEPARATOR . $repo;
288
+        return 'repos'.DIRECTORY_SEPARATOR.$repo;
289 289
     }
290 290
     
291 291
     /**
@@ -347,7 +347,7 @@  discard block
 block discarded – undo
347 347
             $wrapper->git('rebase upstream/master master', $repoFileSystemPath);
348 348
             $this->outputInfo("{$repo}: rebase master ✔");
349 349
         } catch (\Exception $err) {
350
-            $this->outputError("{$repo}: error while updating ({$repoFileSystemPath}) with message: " . $err->getMessage());
350
+            $this->outputError("{$repo}: error while updating ({$repoFileSystemPath}) with message: ".$err->getMessage());
351 351
         }
352 352
     }
353 353
     
Please login to merge, or discard this patch.