Completed
Pull Request — master (#1302)
by Martin
04:11 queued 01:26
created
core/base/Module.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -278,6 +278,6 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
core/console/commands/ImportController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -164,18 +164,18 @@
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
core/helpers/ArrayHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
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,7 +136,7 @@  discard block
 block discarded – undo
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
     
142 142
     /**
Please login to merge, or discard this patch.
core/base/ModuleReflection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
         
206 206
         return [
207 207
             'module' => $this->module->id,
208
-            'route' => $this->module->id . '/' . $request['route'],
208
+            'route' => $this->module->id.'/'.$request['route'],
209 209
             'params' => $request['args'],
210 210
         ];
211 211
     }
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
             throw new NotFoundHttpException(sprintf("Unable to create controller '%s' for module '%s'.", $requestRoute['route'], $this->module->id));
227 227
         }
228 228
         
229
-        Yii::info('LUYA module run module "'.$this->module->id.'" route ' . $requestRoute['route'], __METHOD__);
229
+        Yii::info('LUYA module run module "'.$this->module->id.'" route '.$requestRoute['route'], __METHOD__);
230 230
         
231 231
         $this->controller = $controller[0];
232 232
         
Please login to merge, or discard this patch.
core/web/Element.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -261,7 +261,7 @@
 block discarded – undo
261 261
      */
262 262
     public function render($file, array $args = [])
263 263
     {
264
-    	$view = new View();
264
+        $view = new View();
265 265
         return $view->renderPhpFile(rtrim($this->getFolder(), DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR . FileHelper::ensureExtension($file, 'php'), $args);
266 266
         
267 267
     }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -262,7 +262,7 @@
 block discarded – undo
262 262
     public function render($file, array $args = [])
263 263
     {
264 264
     	$view = new View();
265
-        return $view->renderPhpFile(rtrim($this->getFolder(), DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR . FileHelper::ensureExtension($file, 'php'), $args);
265
+        return $view->renderPhpFile(rtrim($this->getFolder(), DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR.FileHelper::ensureExtension($file, 'php'), $args);
266 266
         
267 267
     }
268 268
 }
Please login to merge, or discard this patch.