Completed
Push — master ( bc33e9...2123df )
by Basil
25s
created
core/widgets/SubmitButtonWidget.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -89,10 +89,10 @@
 block discarded – undo
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 {
Please login to merge, or discard this patch.
core/texttospeech/TextToSpeechWidget.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -139,7 +139,7 @@
 block discarded – undo
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}');
Please login to merge, or discard this patch.
core/web/Asset.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
 
30 30
         if ($this->sourcePath === null) {
31 31
             $class = new ReflectionClass($this);
32
-            $this->sourcePath = dirname($class->getFileName()) . DIRECTORY_SEPARATOR . $this->defaultSourcePathFolder . DIRECTORY_SEPARATOR . Inflector::camel2id($class->getShortName());
32
+            $this->sourcePath = dirname($class->getFileName()).DIRECTORY_SEPARATOR.$this->defaultSourcePathFolder.DIRECTORY_SEPARATOR.Inflector::camel2id($class->getShortName());
33 33
         }
34 34
     }
35 35
 }
Please login to merge, or discard this patch.
core/theme/ThemeManager.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
             $dir = $basePath;
56 56
         } else {
57 57
             // relative path
58
-            throw new InvalidConfigException('Theme base path have to be absolute or alias: ' . $basePath);
58
+            throw new InvalidConfigException('Theme base path have to be absolute or alias: '.$basePath);
59 59
         }
60 60
 
61 61
         // $basePath is an absolute path = /VENDOR/NAME/theme.json
@@ -65,12 +65,12 @@  discard block
 block discarded – undo
65 65
             $basePath = pathinfo($basePath, PATHINFO_DIRNAME);
66 66
         } else {
67 67
             if (!is_dir($dir) || !is_readable($dir)) {
68
-                throw new Exception('Theme directory not exists or readable: ' . $dir);
68
+                throw new Exception('Theme directory not exists or readable: '.$dir);
69 69
             }
70 70
 
71
-            $themeFile = $dir . DIRECTORY_SEPARATOR . 'theme.json';
71
+            $themeFile = $dir.DIRECTORY_SEPARATOR.'theme.json';
72 72
             if (!file_exists($themeFile)) {
73
-                throw new InvalidConfigException('Theme config file missing at: ' . $themeFile);
73
+                throw new InvalidConfigException('Theme config file missing at: '.$themeFile);
74 74
             }
75 75
         }
76 76
         
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
         
173 173
         if (file_exists(Yii::getAlias('@app/themes'))) {
174 174
             foreach (glob(Yii::getAlias('@app/themes/*')) as $dirPath) {
175
-                $themeDefinitions[] = "@app/themes/" . basename($dirPath);
175
+                $themeDefinitions[] = "@app/themes/".basename($dirPath);
176 176
             }
177 177
         }
178 178
         
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
         
227 227
         $this->_themes[$basePath] = $themeConfig;
228 228
         
229
-        Yii::setAlias('@' . basename($basePath) . 'Theme', $basePath);
229
+        Yii::setAlias('@'.basename($basePath).'Theme', $basePath);
230 230
     }
231 231
     
232 232
     /**
Please login to merge, or discard this patch.
core/lazyload/LazyLoad.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -184,18 +184,18 @@  discard block
 block discarded – undo
184 184
     public function run()
185 185
     {
186 186
         if ($this->placeholderSrc && $this->placeholderAsBase64) {
187
-            $this->placeholderSrc = 'data:image/jpg;base64,' . base64_encode(file_get_contents($this->placeholderSrc));
187
+            $this->placeholderSrc = 'data:image/jpg;base64,'.base64_encode(file_get_contents($this->placeholderSrc));
188 188
         }
189 189
 
190 190
         if ($this->attributesOnly && !$this->placeholderSrc) {
191 191
             return "class=\"js-lazyimage $this->extraClass\" data-src=\"$this->src\" data-width=\"$this->width\" data-height=\"$this->height\" data-as-background=\"1\"";
192 192
         }
193 193
 
194
-        $tag = '<div class="lazyimage-wrapper ' . $this->extraClass . '">';
194
+        $tag = '<div class="lazyimage-wrapper '.$this->extraClass.'">';
195 195
         $tag .= Html::tag('img', '', array_merge(
196 196
             $this->options,
197 197
             [
198
-                'class' => 'js-lazyimage lazyimage' . ($this->replacePlaceholder ? (' ' . $this->extraClass) : ''),
198
+                'class' => 'js-lazyimage lazyimage'.($this->replacePlaceholder ? (' '.$this->extraClass) : ''),
199 199
                 'data-src' => $this->src,
200 200
                 'data-width' => $this->width,
201 201
                 'data-height' => $this->height,
@@ -205,9 +205,9 @@  discard block
 block discarded – undo
205 205
         if ($this->placeholderSrc) {
206 206
             $tag .= Html::tag('img', '', ['class' => 'lazyimage-placeholder', 'src' => $this->placeholderSrc]);
207 207
         } else {
208
-            $tag .= '<div class="lazyimage-placeholder"><div style="display: block; height: 0px; padding-bottom: ' . $this->generateAspectRation() . '%;"></div><div class="loader"></div></div>';
208
+            $tag .= '<div class="lazyimage-placeholder"><div style="display: block; height: 0px; padding-bottom: '.$this->generateAspectRation().'%;"></div><div class="loader"></div></div>';
209 209
         }
210
-        $tag .= '<noscript><img class="loaded ' . $this->extraClass . '" src="'.$this->src.'" /></noscript>';
210
+        $tag .= '<noscript><img class="loaded '.$this->extraClass.'" src="'.$this->src.'" /></noscript>';
211 211
         $tag .= '</div>';
212 212
 
213 213
         return $tag;
Please login to merge, or discard this patch.
core/web/filters/JsonCruftFilter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      */
65 65
     public function prependCruft($content)
66 66
     {
67
-        return $this->cruft . trim($content);
67
+        return $this->cruft.trim($content);
68 68
     }
69 69
     
70 70
     /**
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
     {
75 75
         if (Yii::$app->response->format == Response::FORMAT_JSON && !in_array(Yii::$app->response->statusCode, $this->ignoreStatusCodes)) {
76 76
             Yii::$app->response->headers->set(self::CRUFT_HEADER_NAME, $this->getCruftLength());
77
-            Yii::$app->response->on(Response::EVENT_AFTER_PREPARE, function ($event) {
77
+            Yii::$app->response->on(Response::EVENT_AFTER_PREPARE, function($event) {
78 78
                 $event->sender->content = $this->prependCruft($event->sender->content);
79 79
             });
80 80
         }
Please login to merge, or discard this patch.
core/base/BaseBootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
             // see if the module has a registerComponents method
107 107
             foreach ($module->registerComponents() as $componentId => $definition) {
108 108
                 if (!$app->has($componentId)) {
109
-                    Yii::debug('Register component ' . $componentId, __METHOD__);
109
+                    Yii::debug('Register component '.$componentId, __METHOD__);
110 110
                     $app->set($componentId, $definition);
111 111
                 }
112 112
             }
Please login to merge, or discard this patch.
core/web/WebsiteLink.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
     public function setHref($href)
49 49
     {
50 50
         if (StringHelper::startsWith($href, '//')) {
51
-            $this->_href = Url::base(true) . str_replace('//', '/', $href);
51
+            $this->_href = Url::base(true).str_replace('//', '/', $href);
52 52
         } elseif (StringHelper::startsWith($href, '#')) {
53 53
             // When an anchor link is given, do not modify the link. This can be usefull for one pagers
54 54
             $this->_href = $href;
Please login to merge, or discard this patch.
core/web/Svg.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -102,25 +102,25 @@  discard block
 block discarded – undo
102 102
     public function run()
103 103
     {
104 104
         // Cache generated code
105
-        return $this->getOrSetHasCache(['svg', $this->folder, $this->file, $this->cssClass, $this->symbolName], function () {
105
+        return $this->getOrSetHasCache(['svg', $this->folder, $this->file, $this->cssClass, $this->symbolName], function() {
106 106
 
107 107
             // Check if file ends with .svg, if not add the extension
108
-            $svgFile = StringHelper::endsWith($this->file, '.svg') ? $this->file : $this->file . '.svg';
108
+            $svgFile = StringHelper::endsWith($this->file, '.svg') ? $this->file : $this->file.'.svg';
109 109
 
110 110
             if ($this->symbolMode) {
111
-                $svgPath = Yii::$app->view->publicHtml . '/' . $svgFile;
111
+                $svgPath = Yii::$app->view->publicHtml.'/'.$svgFile;
112 112
 
113
-                return '<svg class="symbol symbol--' . $this->symbolName . '' . ($this->cssClass ? ' ' . $this->cssClass : '') . '"><use class="symbol__use" xlink:href="' . $svgPath . '#' . $this->symbolName . '" /></svg>';
113
+                return '<svg class="symbol symbol--'.$this->symbolName.''.($this->cssClass ? ' '.$this->cssClass : '').'"><use class="symbol__use" xlink:href="'.$svgPath.'#'.$this->symbolName.'" /></svg>';
114 114
             } else {
115 115
                 // Build the full svg file path
116
-                $svgPath = $this->folder . DIRECTORY_SEPARATOR . $svgFile;
116
+                $svgPath = $this->folder.DIRECTORY_SEPARATOR.$svgFile;
117 117
 
118 118
                 // Get the svg contents
119 119
                 $content = FileHelper::getFileContent($svgPath);
120 120
 
121 121
                 // If a cssClass string is given, add it to the <svg> tag
122 122
                 if ($this->cssClass && is_string($this->cssClass)) {
123
-                    $content = preg_replace('/<svg/', '<svg class="' . $this->cssClass . '"', $content);
123
+                    $content = preg_replace('/<svg/', '<svg class="'.$this->cssClass.'"', $content);
124 124
                 }
125 125
 
126 126
                 if ($content) {
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
                 }
129 129
             }
130 130
 
131
-            throw new Exception('Unable to access SVG File: ' . $svgPath);
131
+            throw new Exception('Unable to access SVG File: '.$svgPath);
132 132
         });
133 133
     }
134 134
 }
Please login to merge, or discard this patch.