Completed
Branch 09branch (946dde)
by Anton
05:16
created
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/Views/Loaders/FileLoader.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -103,11 +103,11 @@  discard block
 block discarded – undo
103 103
 
104 104
         foreach ($this->namespaces[$namespace] as $directory) {
105 105
             //Seeking for view filename
106
-            if ($this->files->exists($directory . $filename)) {
106
+            if ($this->files->exists($directory.$filename)) {
107 107
 
108 108
                 //Found view context
109 109
                 $this->sourceCache[$path] = new ViewSource(
110
-                    $directory . $filename,
110
+                    $directory.$filename,
111 111
                     $this->fetchName($filename),
112 112
                     $namespace
113 113
                 );
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
 
156 156
         if (strpos($filename, '.') === false && !empty($this->extension)) {
157 157
             //Forcing default extension
158
-            $filename .= '.' . $this->extension;
158
+            $filename .= '.'.$this->extension;
159 159
         }
160 160
 
161 161
         if (strpos($filename, ViewsInterface::NS_SEPARATOR) !== false) {
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/Environment.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
         //Unique env file hash
133 133
         $this->id = $this->files->md5($this->filename);
134 134
 
135
-        if (!empty($values = $this->memory->loadData(static::MEMORY . '.' . $this->id))) {
135
+        if (!empty($values = $this->memory->loadData(static::MEMORY.'.'.$this->id))) {
136 136
             //Restore from cache
137 137
             $this->initEnvironment($values);
138 138
 
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
             $this->parseValues($this->filename)
145 145
         );
146 146
 
147
-        $this->memory->saveData(static::MEMORY . '.' . $this->id, $values);
147
+        $this->memory->saveData(static::MEMORY.'.'.$this->id, $values);
148 148
     }
149 149
 
150 150
     /**
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.