| @@ -94,7 +94,7 @@ discard block | ||
| 94 | 94 | $length = strlen($composition); | 
| 95 | 95 | $route = $parsedRequest[0]; | 
| 96 | 96 | |
| 97 | -        if (substr($route, 0, $length+1) == $composition.'/') { | |
| 97 | +        if (substr($route, 0, $length + 1) == $composition.'/') { | |
| 98 | 98 | $parsedRequest[0] = substr($parsedRequest[0], $length); | 
| 99 | 99 | } | 
| 100 | 100 | |
| @@ -302,10 +302,10 @@ discard block | ||
| 302 | 302 | $params = (array) $params; | 
| 303 | 303 | $url = $this->internalCreateUrl($params); | 
| 304 | 304 |          if (strpos($url, '://') === false) { | 
| 305 | - $url = $this->getHostInfo() . $url; | |
| 305 | + $url = $this->getHostInfo().$url; | |
| 306 | 306 | } | 
| 307 | 307 |          if (is_string($scheme) && ($pos = strpos($url, '://')) !== false) { | 
| 308 | - $url = $scheme . substr($url, $pos); | |
| 308 | + $url = $scheme.substr($url, $pos); | |
| 309 | 309 | } | 
| 310 | 310 | return $url; | 
| 311 | 311 | } | 
| @@ -123,7 +123,7 @@ | ||
| 123 | 123 |      { | 
| 124 | 124 |          if (!is_object($this->tags[$tag])) { | 
| 125 | 125 | $this->tags[$tag] = Yii::createObject($this->tags[$tag]); | 
| 126 | -            Yii::trace('tag parser object generated for:'. $tag, __CLASS__); | |
| 126 | +            Yii::trace('tag parser object generated for:'.$tag, __CLASS__); | |
| 127 | 127 | } | 
| 128 | 128 | } | 
| 129 | 129 | |
| @@ -46,7 +46,7 @@ | ||
| 46 | 46 | |
| 47 | 47 |          @chdir(Yii::getAlias('@app')); | 
| 48 | 48 | |
| 49 | -        $this->output('The directory the health commands is applying to: ' . Yii::getAlias('@app')); | |
| 49 | +        $this->output('The directory the health commands is applying to: '.Yii::getAlias('@app')); | |
| 50 | 50 | |
| 51 | 51 |          foreach ($this->folders as $folder => $writable) { | 
| 52 | 52 | $mode = ($writable) ? 0777 : 0775; | 
| @@ -49,7 +49,7 @@ | ||
| 49 | 49 | */ | 
| 50 | 50 | public function parse($value, $sub) | 
| 51 | 51 |      { | 
| 52 | - return Html::a(empty($sub) ? $value : $sub, 'tel:' . $this->ensureNumber($value)); | |
| 52 | + return Html::a(empty($sub) ? $value : $sub, 'tel:'.$this->ensureNumber($value)); | |
| 53 | 53 | } | 
| 54 | 54 | |
| 55 | 55 | private function ensureNumber($number) | 
| @@ -157,7 +157,7 @@ | ||
| 157 | 157 | return $response->send(); | 
| 158 | 158 | } | 
| 159 | 159 | |
| 160 | -        $response->on(Response::EVENT_AFTER_SEND, function ($event) use ($action) { | |
| 160 | +        $response->on(Response::EVENT_AFTER_SEND, function($event) use ($action) { | |
| 161 | 161 | $this->callActionCallable($action->id, $event->sender->content); | 
| 162 | 162 | }); | 
| 163 | 163 | |
| @@ -18,5 +18,5 @@ | ||
| 18 | 18 | } | 
| 19 | 19 | |
| 20 | 20 | spl_autoload_register(['Yii', 'autoload'], true, true); | 
| 21 | -Yii::$classMap = require(LUYA_YII_VENDOR . '/classes.php'); | |
| 21 | +Yii::$classMap = require(LUYA_YII_VENDOR.'/classes.php'); | |
| 22 | 22 | Yii::$container = new yii\di\Container(); | 
| @@ -115,7 +115,7 @@ discard block | ||
| 115 | 115 | case 'en': | 
| 116 | 116 | return 'en_US'; | 
| 117 | 117 | default: | 
| 118 | - return strtolower($lang) . '_' . strtoupper($lang); | |
| 118 | + return strtolower($lang).'_'.strtoupper($lang); | |
| 119 | 119 | } | 
| 120 | 120 | } | 
| 121 | 121 | |
| @@ -145,7 +145,7 @@ discard block | ||
| 145 | 145 | public function getWebroot() | 
| 146 | 146 |      { | 
| 147 | 147 |          if ($this->_webroot === null) { | 
| 148 | - $this->_webroot = realpath(realpath($this->basePath) . DIRECTORY_SEPARATOR . $this->webrootDirectory); | |
| 148 | + $this->_webroot = realpath(realpath($this->basePath).DIRECTORY_SEPARATOR.$this->webrootDirectory); | |
| 149 | 149 | } | 
| 150 | 150 | |
| 151 | 151 | return $this->_webroot; | 
| @@ -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 | } | 
| @@ -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 | } |