@@ -61,7 +61,7 @@ |
||
61 | 61 | */ |
62 | 62 | public function getHref() |
63 | 63 | { |
64 | - return empty($this->getEmail()) ? null : 'mailto:' . $this->getEmail(); |
|
64 | + return empty($this->getEmail()) ? null : 'mailto:'.$this->getEmail(); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | /** |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | } |
75 | 75 | |
76 | 76 | $pos = strpos($viewPath, '/'); |
77 | - $rootPath = $pos === false ? $viewPath : (substr($viewPath, 0, $pos) . '/views'); |
|
77 | + $rootPath = $pos === false ? $viewPath : (substr($viewPath, 0, $pos).'/views'); |
|
78 | 78 | $this->pathMap[$rootPath] = $pathMap; |
79 | 79 | |
80 | 80 | $this->pathMap['@app/views'] = $pathMap; |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | */ |
110 | 110 | public function getLayoutPath() |
111 | 111 | { |
112 | - return $this->viewPath . '/' . self::LAYOUTS_PATH; |
|
112 | + return $this->viewPath.'/'.self::LAYOUTS_PATH; |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | /** |
@@ -123,7 +123,7 @@ |
||
123 | 123 | { |
124 | 124 | if (Yii::$app->request->isPost) { |
125 | 125 | if ($this->getElapsedProcessTime() < $this->delay) { |
126 | - throw new WhitelistedException("Robots Filter has detected an invalid Request: " . VarDumper::export(ArrayHelper::coverSensitiveValues(Yii::$app->request->post()))); |
|
126 | + throw new WhitelistedException("Robots Filter has detected an invalid Request: ".VarDumper::export(ArrayHelper::coverSensitiveValues(Yii::$app->request->post()))); |
|
127 | 127 | } |
128 | 128 | } |
129 | 129 |
@@ -140,6 +140,6 @@ |
||
140 | 140 | */ |
141 | 141 | public function getViewPath() |
142 | 142 | { |
143 | - return $this->getBasePath() . '/views'; |
|
143 | + return $this->getBasePath().'/views'; |
|
144 | 144 | } |
145 | 145 | } |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | } |
59 | 59 | |
60 | 60 | if ($throwException) { |
61 | - throw new Exception("The given object must be an instance of: " . implode(",", $haystack)); |
|
61 | + throw new Exception("The given object must be an instance of: ".implode(",", $haystack)); |
|
62 | 62 | } |
63 | 63 | |
64 | 64 | return false; |
@@ -227,7 +227,7 @@ discard block |
||
227 | 227 | } catch (InvalidParamException $e) { |
228 | 228 | }; |
229 | 229 | |
230 | - $staticPath = $module::staticBasePath() . DIRECTORY_SEPARATOR . 'controllers'; |
|
230 | + $staticPath = $module::staticBasePath().DIRECTORY_SEPARATOR.'controllers'; |
|
231 | 231 | if (is_dir($staticPath)) { |
232 | 232 | foreach (FileHelper::findFiles($staticPath) as $file) { |
233 | 233 | $files[self::fileToName($staticPath, $file)] = $file; |
@@ -57,7 +57,7 @@ |
||
57 | 57 | { |
58 | 58 | if (StringHelper::startsWith($value, '//')) { |
59 | 59 | // its an absolute url |
60 | - $value = StringHelper::replaceFirst('//', Url::base(true) . '/', $value); |
|
60 | + $value = StringHelper::replaceFirst('//', Url::base(true).'/', $value); |
|
61 | 61 | $external = false; |
62 | 62 | } elseif (StringHelper::startsWith($value, '/')) { |
63 | 63 | // its a relative url, keep it like this |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | { |
41 | 41 | if ($this->verbose) { |
42 | 42 | $message = $this->printableMessage($message); |
43 | - $this->output(!empty($section) ? $section . ': ' . $message : $message); |
|
43 | + $this->output(!empty($section) ? $section.': '.$message : $message); |
|
44 | 44 | } |
45 | 45 | } |
46 | 46 | |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | $name = substr($name, 0, -(strlen($suffix))); |
119 | 119 | } |
120 | 120 | |
121 | - return $name . $suffix; |
|
121 | + return $name.$suffix; |
|
122 | 122 | } |
123 | 123 | |
124 | 124 | /** |
@@ -89,10 +89,10 @@ |
||
89 | 89 | $(document).on('beforeSubmit', function (e) { |
90 | 90 | var buttonSelector = $(e.target).find(':submit'); |
91 | 91 | var formSelector = $(e.target); |
92 | - if (formSelector.find('div." . $this->_activeForm->errorCssClass . "').length === 0) { |
|
92 | + if (formSelector.find('div." . $this->_activeForm->errorCssClass."').length === 0) { |
|
93 | 93 | buttonSelector.attr('disabled', true); |
94 | - var newButtonLabel = '" . $this->pushed . "'; |
|
95 | - if (newButtonLabel) { buttonSelector.html('" . $this->pushed . "'); } |
|
94 | + var newButtonLabel = '" . $this->pushed."'; |
|
95 | + if (newButtonLabel) { buttonSelector.html('" . $this->pushed."'); } |
|
96 | 96 | } |
97 | 97 | return true;});"); |
98 | 98 | } else { |
@@ -139,7 +139,7 @@ |
||
139 | 139 | var tts = $.textToSpeech({$config}); |
140 | 140 | var playButton = $('{$this->playButtonSelector}'); |
141 | 141 | var pauseButton = $('{$this->pauseButtonSelector}'); |
142 | - " . ($this->targetSelector ? "tts.setText($('{$this->targetSelector}').text());" : "") . " |
|
142 | + ".($this->targetSelector ? "tts.setText($('{$this->targetSelector}').text());" : "")." |
|
143 | 143 | var applyPlayClasses = function () { |
144 | 144 | playButton.addClass('{$this->playButtonActiveClass}'); |
145 | 145 | pauseButton.removeClass('{$this->pauseButtonActiveClass}'); |