Completed
Push — master ( 753bea...e46c0d )
by Basil
02:12
created
core/tag/tags/LinkTag.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
core/traits/ErrorHandlerTrait.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -176,9 +176,9 @@  discard block
 block discarded – undo
176 176
             $_file = $exception->getFile();
177 177
             $_line = $exception->getLine();
178 178
         } elseif (is_string($exception)) {
179
-            $_message = 'exception string: ' . $exception;
179
+            $_message = 'exception string: '.$exception;
180 180
         } elseif (is_array($exception)) {
181
-            $_message = isset($exception['message']) ? $exception['message'] : 'exception array dump: ' . print_r($exception, true);
181
+            $_message = isset($exception['message']) ? $exception['message'] : 'exception array dump: '.print_r($exception, true);
182 182
             $_file = isset($exception['file']) ? $exception['file'] : __FILE__;
183 183
             $_line = isset($exception['line']) ? $exception['line'] : __LINE__;
184 184
         }
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
 
250 250
         if (!empty($file)) {
251 251
             try {
252
-                $lineInArray = $line -1;
252
+                $lineInArray = $line - 1;
253 253
                 // load file from path
254 254
                 $fileInfo = file($file, FILE_IGNORE_NEW_LINES);
255 255
                 // load file if false from real path
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
             'class' => isset($item['class']) ? $item['class'] : null,
290 290
             // currently arguments wont be transmited due to large amount of informations based on base object
291 291
             //'args' => isset($item['args']) ? ArrayHelper::coverSensitiveValues($item['args'], $this->sensitiveKeys) : [],
292
-        ], function ($value) {
292
+        ], function($value) {
293 293
             return !empty($value);
294 294
         });
295 295
     }
Please login to merge, or discard this patch.
core/console/Command.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.
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/helpers/ArrayHelper.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
     public static function search(array $array, $searchText, $sensitive = false, array $keys = [])
159 159
     {
160 160
         $function = $sensitive ? 'strpos' : 'stripos';
161
-        return array_filter($array, function ($item) use ($searchText, $function, $keys) {
161
+        return array_filter($array, function($item) use ($searchText, $function, $keys) {
162 162
             $response = false;
163 163
             foreach ($item as $key => $value) {
164 164
                 if ($response) {
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
         $array = array_values($array); // align array keys
207 207
         $columns = array_column($array, $column);
208 208
         $key = array_search($search, $columns);
209
-        return ($key !== false) ?  $array[$key] : false;
209
+        return ($key !== false) ? $array[$key] : false;
210 210
     }
211 211
     
212 212
     /**
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
      */
239 239
     public static function searchColumns(array $array, $column, $search)
240 240
     {
241
-        $keys = array_filter($array, function ($var) use ($column, $search) {
241
+        $keys = array_filter($array, function($var) use ($column, $search) {
242 242
             return strcasecmp($search, $var[$column]) == 0 ? true : false;
243 243
         });
244 244
         
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
         $array = array_combine($range, $range);
279 279
         
280 280
         if ($text) {
281
-            array_walk($array, function (&$item, $key) use ($text) {
281
+            array_walk($array, function(&$item, $key) use ($text) {
282 282
                 if (is_array($text)) {
283 283
                     list($singular, $plural) = $text;
284 284
                     if ($key == 1) {
Please login to merge, or discard this patch.
core/helpers/Url.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      */
35 35
     public static function trailing($url, $slash = '/')
36 36
     {
37
-        return rtrim($url, $slash) . $slash;
37
+        return rtrim($url, $slash).$slash;
38 38
     }
39 39
     
40 40
     /**
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
     public static function ensureHttp($url, $https = false)
88 88
     {
89 89
         if (!preg_match("~^(?:f|ht)tps?://~i", $url)) {
90
-            $url = ($https ? "https://" : "http://") . $url;
90
+            $url = ($https ? "https://" : "http://").$url;
91 91
         }
92 92
         
93 93
         return $url;
@@ -156,14 +156,14 @@  discard block
 block discarded – undo
156 156
         if (StringHelper::contains('?', $url)) {
157 157
             // seperator already existing
158 158
             if (StringHelper::endsWith($url, '&') || StringHelper::endsWith($url, '?')) {
159
-                return $url . $append;
159
+                return $url.$append;
160 160
             }
161 161
 
162 162
             // add seperator
163
-            return $url . '&' . $append;
163
+            return $url.'&'.$append;
164 164
         }
165 165
         
166 166
         // use ?
167
-        return $url . '?' . $append;
167
+        return $url.'?'.$append;
168 168
     }
169 169
 }
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/theme/ThemeManager.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
         if (strpos($basePath, '@') === 0) {
53 53
             $dir = Yii::getAlias($basePath);
54 54
         } elseif (strpos($basePath, '/') !== 0) {
55
-            $dir = $basePath = Yii::$app->basePath . DIRECTORY_SEPARATOR . $basePath;
55
+            $dir = $basePath = Yii::$app->basePath.DIRECTORY_SEPARATOR.$basePath;
56 56
         } else {
57 57
             $dir = $basePath;
58 58
         }
@@ -64,12 +64,12 @@  discard block
 block discarded – undo
64 64
             $basePath = pathinfo($basePath, PATHINFO_DIRNAME);
65 65
         } else {
66 66
             if (!is_dir($dir) || !is_readable($dir)) {
67
-                throw new Exception('Theme directory not exists or readable: ' . $dir);
67
+                throw new Exception('Theme directory not exists or readable: '.$dir);
68 68
             }
69 69
 
70
-            $themeFile = $dir . DIRECTORY_SEPARATOR . 'theme.json';
70
+            $themeFile = $dir.DIRECTORY_SEPARATOR.'theme.json';
71 71
             if (!file_exists($themeFile)) {
72
-                throw new InvalidConfigException('Theme config file missing at: ' . $themeFile);
72
+                throw new InvalidConfigException('Theme config file missing at: '.$themeFile);
73 73
             }
74 74
         }
75 75
         
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
         
172 172
         if (file_exists(Yii::getAlias('@app/themes'))) {
173 173
             foreach (glob(Yii::getAlias('@app/themes/*')) as $dirPath) {
174
-                $themeDefinitions[] = "@app/themes/" . basename($dirPath);
174
+                $themeDefinitions[] = "@app/themes/".basename($dirPath);
175 175
             }
176 176
         }
177 177
         
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
         
218 218
         $this->_themes[$basePath] = $themeConfig;
219 219
         
220
-        Yii::setAlias('@' . basename($basePath) . 'Theme', $basePath);
220
+        Yii::setAlias('@'.basename($basePath).'Theme', $basePath);
221 221
     }
222 222
     
223 223
     /**
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.