@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | |
| 98 | 98 | return [ |
| 99 | 99 | 'module' => $this->module->id, |
| 100 | - 'route' => $this->module->id . '/' . $request['route'], |
|
| 100 | + 'route' => $this->module->id.'/'.$request['route'], |
|
| 101 | 101 | 'params' => $request['args'], |
| 102 | 102 | ]; |
| 103 | 103 | } |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | throw new InvalidConfigException(sprintf("Unable to create controller '%s' for module '%s'.", $requestRoute['route'], $this->module->id)); |
| 118 | 118 | } |
| 119 | 119 | |
| 120 | - Yii::info('LUYA module run module "'.$this->module->id.'" route ' . $requestRoute['route'], __METHOD__); |
|
| 120 | + Yii::info('LUYA module run module "'.$this->module->id.'" route '.$requestRoute['route'], __METHOD__); |
|
| 121 | 121 | |
| 122 | 122 | // run the action on the provided controller object |
| 123 | 123 | return $controller[0]->runAction($controller[1], $requestRoute['args']); |
@@ -63,7 +63,7 @@ |
||
| 63 | 63 | public function getWebroot() |
| 64 | 64 | { |
| 65 | 65 | if ($this->_webroot === null) { |
| 66 | - $this->_webroot = realpath(realpath($this->basePath) . DIRECTORY_SEPARATOR . $this->webrootDirectory); |
|
| 66 | + $this->_webroot = realpath(realpath($this->basePath).DIRECTORY_SEPARATOR.$this->webrootDirectory); |
|
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | return $this->_webroot; |
@@ -41,7 +41,7 @@ |
||
| 41 | 41 | { |
| 42 | 42 | $info = pathinfo($file); |
| 43 | 43 | if (!isset($info['extension']) || empty($info['extension'])) { |
| 44 | - $file = rtrim($file, '.') . '.' . $extension; |
|
| 44 | + $file = rtrim($file, '.').'.'.$extension; |
|
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | return $file; |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | */ |
| 61 | 61 | public function mailer() |
| 62 | 62 | { |
| 63 | - trigger_error("Deprecated function called: " . __METHOD__, E_USER_NOTICE); |
|
| 63 | + trigger_error("Deprecated function called: ".__METHOD__, E_USER_NOTICE); |
|
| 64 | 64 | return $this->getMailer(); |
| 65 | 65 | } |
| 66 | 66 | |
@@ -237,7 +237,7 @@ discard block |
||
| 237 | 237 | return true; |
| 238 | 238 | } else { |
| 239 | 239 | $data = [$this->host, $this->port, $this->smtpSecure, $this->username]; |
| 240 | - throw new Exception('Authentication failed ('.implode(',', $data).'): '.$smtp->getLastReply() . PHP_EOL . print_r($smtp->getError(), true)); |
|
| 240 | + throw new Exception('Authentication failed ('.implode(',', $data).'): '.$smtp->getLastReply().PHP_EOL.print_r($smtp->getError(), true)); |
|
| 241 | 241 | } |
| 242 | 242 | } else { |
| 243 | 243 | throw new Exception('HELO failed: '.$smtp->getLastReply()); |
@@ -104,8 +104,8 @@ |
||
| 104 | 104 | case 'model': |
| 105 | 105 | |
| 106 | 106 | if (!$extended) { |
| 107 | - $modelName = $modelName . 'NgRest'; |
|
| 108 | - $item['file'] = $modelName . '.php'; |
|
| 107 | + $modelName = $modelName.'NgRest'; |
|
| 108 | + $item['file'] = $modelName.'.php'; |
|
| 109 | 109 | $item['class'] = $modelName; |
| 110 | 110 | } |
| 111 | 111 | |
@@ -19,5 +19,5 @@ |
||
| 19 | 19 | /** |
| 20 | 20 | * @var string $modelClass The path to the model which is the provider for the rules and fields. |
| 21 | 21 | */ |
| 22 | - public $modelClass = '<?= $modelClass;?>'; |
|
| 22 | + public $modelClass = '<?= $modelClass; ?>'; |
|
| 23 | 23 | } |
@@ -19,5 +19,5 @@ |
||
| 19 | 19 | /** |
| 20 | 20 | * @var string $modelClass The path to the model which is the provider for the rules and fields. |
| 21 | 21 | */ |
| 22 | - public $modelClass = '<?= $modelClass;?>'; |
|
| 22 | + public $modelClass = '<?= $modelClass; ?>'; |
|
| 23 | 23 | } |
@@ -50,9 +50,9 @@ |
||
| 50 | 50 | foreach ($array as $k => $v) { |
| 51 | 51 | if (is_numeric($v)) { |
| 52 | 52 | if (is_float($v)) { |
| 53 | - $return[$k] = (float)$v; |
|
| 53 | + $return[$k] = (float) $v; |
|
| 54 | 54 | } else { |
| 55 | - $return[$k] = (int)$v; |
|
| 55 | + $return[$k] = (int) $v; |
|
| 56 | 56 | } |
| 57 | 57 | } elseif (is_array($v)) { |
| 58 | 58 | $return[$k] = self::typeCast($v); |
@@ -42,7 +42,7 @@ |
||
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | // change the namespace where the controller should be lookuped up in |
| 45 | - $module->controllerNamespace = $module->namespace . '\commands'; |
|
| 45 | + $module->controllerNamespace = $module->namespace.'\commands'; |
|
| 46 | 46 | |
| 47 | 47 | // action response |
| 48 | 48 | $response = $module->runAction($route, ['verbose' => $this->verbose]); |