Completed
Pull Request — master (#189)
by Valentin
02:37
created
source/Spiral/Validation/Checkers/AddressChecker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
     {
53 53
         if (!$requireScheme && stripos($url, '://') === false) {
54 54
             //Allow urls without http schema
55
-            $url = 'http://' . $url;
55
+            $url = 'http://'.$url;
56 56
         }
57 57
 
58 58
         if ((bool)filter_var($url, FILTER_VALIDATE_URL)) {
Please login to merge, or discard this patch.
source/Spiral/Views/Engines/Twig/TwigCache.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
      */
42 42
     public function generateKey($name, $className)
43 43
     {
44
-        $hash = hash('md5', $className . '.' . $this->environment->getID());
44
+        $hash = hash('md5', $className.'.'.$this->environment->getID());
45 45
 
46 46
         return "{$this->environment->cacheDirectory()}/{$hash}.php";
47 47
     }
Please login to merge, or discard this patch.
source/Spiral/Views/Processors/EnvironmentProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
         ViewSource $view,
46 46
         string $code
47 47
     ): string {
48
-        return preg_replace_callback($this->pattern, function ($matches) use ($environment) {
48
+        return preg_replace_callback($this->pattern, function($matches) use ($environment) {
49 49
             return $environment->getValue($matches[1]);
50 50
         }, $code);
51 51
     }
Please login to merge, or discard this patch.
source/Spiral/Translator/Configs/TranslatorConfig.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@
 block discarded – undo
115 115
      */
116 116
     public function localeDirectory(string $locale): string
117 117
     {
118
-        return $this->config['localesDirectory'] . $locale . '/';
118
+        return $this->config['localesDirectory'].$locale.'/';
119 119
     }
120 120
 
121 121
     /**
Please login to merge, or discard this patch.
source/Spiral/Core/ConfigFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@
 block discarded – undo
113 113
      */
114 114
     protected function configFilename(string $config): string
115 115
     {
116
-        return $this->directory . $config . static::EXTENSION;
116
+        return $this->directory.$config.static::EXTENSION;
117 117
     }
118 118
 
119 119
     /**
Please login to merge, or discard this patch.
source/Spiral/Support/Strings.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
     public static function shorter(string $string, int $limit = 300): string
78 78
     {
79 79
         if (mb_strlen($string) + 3 > $limit) {
80
-            return trim(mb_substr($string, 0, $limit - 3, 'UTF-8')) . '...';
80
+            return trim(mb_substr($string, 0, $limit - 3, 'UTF-8')).'...';
81 81
         }
82 82
 
83 83
         return $string;
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
             $bytes /= 1024;
99 99
         }
100 100
 
101
-        return number_format($bytes, $unit ? $decimals : 0) . " " . $pows[$unit];
101
+        return number_format($bytes, $unit ? $decimals : 0)." ".$pows[$unit];
102 102
     }
103 103
 
104 104
     /**
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
                 strlen(str_replace("\t", $tabulationCost, $indent)) - $minIndent
188 188
             );
189 189
 
190
-            $line = $useIndent . substr($line, strlen($indent));
190
+            $line = $useIndent.substr($line, strlen($indent));
191 191
             unset($line);
192 192
         }
193 193
 
Please login to merge, or discard this patch.
source/Spiral/Http/Cookies/Cookie.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -253,20 +253,20 @@
 block discarded – undo
253 253
     public function createHeader(): string
254 254
     {
255 255
         $header = [
256
-            rawurlencode($this->name) . '=' . rawurlencode($this->value)
256
+            rawurlencode($this->name).'='.rawurlencode($this->value)
257 257
         ];
258 258
 
259 259
         if ($this->lifetime !== null) {
260
-            $header[] = 'Expires=' . gmdate(\DateTime::COOKIE, $this->getExpires());
261
-            $header[] = 'Max-Age=' . $this->lifetime;
260
+            $header[] = 'Expires='.gmdate(\DateTime::COOKIE, $this->getExpires());
261
+            $header[] = 'Max-Age='.$this->lifetime;
262 262
         }
263 263
 
264 264
         if (!empty($this->path)) {
265
-            $header[] = 'Path=' . $this->path;
265
+            $header[] = 'Path='.$this->path;
266 266
         }
267 267
 
268 268
         if (!empty($this->domain)) {
269
-            $header[] = 'Domain=' . $this->domain;
269
+            $header[] = 'Domain='.$this->domain;
270 270
         }
271 271
 
272 272
         if ($this->secure) {
Please login to merge, or discard this patch.
source/Spiral/Http/MiddlewarePipeline.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -162,11 +162,11 @@  discard block
 block discarded – undo
162 162
             }
163 163
 
164 164
             while (ob_get_level() > $outputLevel + 1) {
165
-                $output = ob_get_clean() . $output;
165
+                $output = ob_get_clean().$output;
166 166
             }
167 167
         }
168 168
 
169
-        return $this->wrapResponse($response, $result, ob_get_clean() . $output);
169
+        return $this->wrapResponse($response, $result, ob_get_clean().$output);
170 170
     }
171 171
 
172 172
     /**
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
         Request $outerRequest,
215 215
         Response $outerResponse
216 216
     ): \Closure {
217
-        $next = function ($request = null, $response = null) use (
217
+        $next = function($request = null, $response = null) use (
218 218
             $position,
219 219
             $outerRequest,
220 220
             $outerResponse
Please login to merge, or discard this patch.
source/Spiral/Http/Request/Bags/InputBag.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
      */
115 115
     public function fetch(array $keys, bool $fill = false, $filler = null)
116 116
     {
117
-        $result = array_intersect_key($this->all(), array_flip($keys));;
117
+        $result = array_intersect_key($this->all(), array_flip($keys)); ;
118 118
         if (!$fill) {
119 119
             return $result;
120 120
         }
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
         $data = $this->data;
181 181
 
182 182
         //Generating path relative to a given name and prefix
183
-        $path = (!empty($this->prefix) ? $this->prefix . '.' : '') . $name;
183
+        $path = (!empty($this->prefix) ? $this->prefix.'.' : '').$name;
184 184
         if (empty($path)) {
185 185
             return $data;
186 186
         }
Please login to merge, or discard this patch.