Completed
Branch great-split (478e04)
by Anton
03:56
created
source/functions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
             $value = '';
33 33
         }
34 34
 
35
-        $replaces[$prefix . $key . $postfix] = $value;
35
+        $replaces[$prefix.$key.$postfix] = $value;
36 36
     }
37 37
 
38 38
     return strtr($string, $replaces);
Please login to merge, or discard this patch.
source/Spiral/Files/Streams/StreamWrapper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
     {
223 223
         self::register();
224 224
 
225
-        $uri = 'spiral://' . spl_object_hash($stream);
225
+        $uri = 'spiral://'.spl_object_hash($stream);
226 226
         self::$uris[$uri] = $stream;
227 227
 
228 228
         return $uri;
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
     public static function releaseUri($uri)
274 274
     {
275 275
         if ($uri instanceof StreamInterface) {
276
-            $uri = 'spiral://' . spl_object_hash($uri);
276
+            $uri = 'spiral://'.spl_object_hash($uri);
277 277
         }
278 278
 
279 279
         unset(self::$uris[$uri]);
Please login to merge, or discard this patch.
source/Spiral/Stempler/Exporters/AttributesExporter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
     {
24 24
         if (preg_match_all('/ node:attributes(?:=\"([^\'"]+)\")?/i', $content, $matches)) {
25 25
             //We have to sort from longest to shortest
26
-            uasort($matches[0], function ($replaceA, $replaceB) {
26
+            uasort($matches[0], function($replaceA, $replaceB) {
27 27
                 return strlen($replaceB) - strlen($replaceA);
28 28
             });
29 29
 
@@ -37,11 +37,11 @@  discard block
 block discarded – undo
37 37
                         continue;
38 38
                     }
39 39
 
40
-                    $inject[$name] = $name . '="' . $value . '"';
40
+                    $inject[$name] = $name.'="'.$value.'"';
41 41
                 }
42 42
 
43 43
                 //Injecting
44
-                $content = str_replace($replace, $inject ? ' ' . join(' ', $inject) : '', $content);
44
+                $content = str_replace($replace, $inject ? ' '.join(' ', $inject) : '', $content);
45 45
             }
46 46
         }
47 47
 
Please login to merge, or discard this patch.
source/Spiral/Stempler/Syntaxes/DarkSyntax.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@
 block discarded – undo
148 148
             }
149 149
 
150 150
             $prefix = isset($attributes['namespace'])
151
-                ? $attributes['namespace'] . ':'
151
+                ? $attributes['namespace'].':'
152 152
                 : $attributes['prefix'];
153 153
 
154 154
             return new Prefixer($prefix, $path);
Please login to merge, or discard this patch.
source/Spiral/Stempler/HtmlTokenizer.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
                     }
130 130
 
131 131
                     if ($position == self::POSITION_IN_TAG) {
132
-                        $buffer = '<' . $buffer;
132
+                        $buffer = '<'.$buffer;
133 133
                     }
134 134
 
135 135
                     //Handling previous token
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
                     //Checking for invalid characters in tag name or arguments
169 169
                     if ($position == self::POSITION_IN_TAG) {
170 170
                         if (!preg_match('/[a-z0-9 \._\-="\':\/\r\n\t]/i', $char)) {
171
-                            $buffer = '<' . $buffer;
171
+                            $buffer = '<'.$buffer;
172 172
                             $position = self::POSITION_PLAIN_TEXT;
173 173
                         }
174 174
                     }
@@ -202,18 +202,18 @@  discard block
 block discarded – undo
202 202
                 continue;
203 203
             }
204 204
 
205
-            $attributes[] = $attribute . '="' . $value . '"';
205
+            $attributes[] = $attribute.'="'.$value.'"';
206 206
         }
207 207
 
208 208
         if (!empty($attributes)) {
209
-            $result .= ' ' . join(' ', $attributes);
209
+            $result .= ' '.join(' ', $attributes);
210 210
         }
211 211
 
212 212
         if ($token[HtmlTokenizer::TOKEN_TYPE] == HtmlTokenizer::TAG_SHORT) {
213 213
             $result .= '/';
214 214
         }
215 215
 
216
-        return '<' . $result . '>';
216
+        return '<'.$result.'>';
217 217
     }
218 218
 
219 219
     /**
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
         $token = [
228 228
             self::TOKEN_NAME       => '',
229 229
             self::TOKEN_TYPE       => self::TAG_OPEN,
230
-            self::TOKEN_CONTENT    => '<' . ($content = $this->repairPHP($content)) . '>',
230
+            self::TOKEN_CONTENT    => '<'.($content = $this->repairPHP($content)).'>',
231 231
             self::TOKEN_ATTRIBUTES => []
232 232
         ];
233 233
 
Please login to merge, or discard this patch.
source/Spiral/Tokenizer/Reflections/ReflectionFile.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -401,7 +401,7 @@  discard block
 block discarded – undo
401 401
 
402 402
         $name = $this->tokens[$localID][self::TOKEN_CODE];
403 403
         if (!empty($namespace = $this->activeNamespace($tokenID))) {
404
-            $name = $namespace . self::NS_SEPARATOR . $name;
404
+            $name = $namespace.self::NS_SEPARATOR.$name;
405 405
         }
406 406
 
407 407
         $this->functions[$name] = [
@@ -426,7 +426,7 @@  discard block
 block discarded – undo
426 426
 
427 427
         $name = $this->tokens[$localID][self::TOKEN_CODE];
428 428
         if (!empty($namespace = $this->activeNamespace($tokenID))) {
429
-            $name = $namespace . self::NS_SEPARATOR . $name;
429
+            $name = $namespace.self::NS_SEPARATOR.$name;
430 430
         }
431 431
 
432 432
         $this->declarations[token_name($tokenType)][$name] = [
Please login to merge, or discard this patch.
source/Spiral/Support/Serializer.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
47 47
         }
48 48
 
49 49
         //Delimiters between rows and sub-arrays.
50
-        $subIndent = "\n" . str_repeat(self::INDENT, $level + 2);
51
-        $keyIndent = "\n" . str_repeat(self::INDENT, $level + 1);
50
+        $subIndent = "\n".str_repeat(self::INDENT, $level + 2);
51
+        $keyIndent = "\n".str_repeat(self::INDENT, $level + 1);
52 52
 
53 53
         //No keys for associated array
54 54
         $associated = array_diff_key($array, array_keys(array_keys($array)));
@@ -70,28 +70,28 @@  discard block
 block discarded – undo
70 70
                         var_export($key, true),
71 71
                         $innerIndent, ' ',
72 72
                         STR_PAD_RIGHT
73
-                    ) . " => ";
73
+                    )." => ";
74 74
             }
75 75
 
76 76
             if (!is_array($value)) {
77
-                $result[] = $prefix . $this->packValue($value);
77
+                $result[] = $prefix.$this->packValue($value);
78 78
                 continue;
79 79
             }
80 80
 
81 81
             if ($value === []) {
82
-                $result[] = $prefix . "[]";
82
+                $result[] = $prefix."[]";
83 83
                 continue;
84 84
             }
85 85
 
86 86
             $subArray = $this->packArray($value, $level + 1);
87
-            $result[] = $prefix . "[{$subIndent}" . $subArray . "{$keyIndent}]";
87
+            $result[] = $prefix."[{$subIndent}".$subArray."{$keyIndent}]";
88 88
         }
89 89
 
90 90
         if ($level !== 0) {
91 91
             return $result ? join(",{$keyIndent}", $result) : "";
92 92
         }
93 93
 
94
-        return "[{$keyIndent}" . join(",{$keyIndent}", $result) . "\n]";
94
+        return "[{$keyIndent}".join(",{$keyIndent}", $result)."\n]";
95 95
     }
96 96
 
97 97
     /**
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
         if (is_string($value) && class_exists($value)) {
124 124
             $reflection = new \ReflectionClass($value);
125 125
 
126
-            return '\\' . $reflection->getName() . '::class';
126
+            return '\\'.$reflection->getName().'::class';
127 127
         }
128 128
 
129 129
         return var_export($value, true);
Please login to merge, or discard this patch.
source/Spiral/Reactor/DeclarationAggregator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -202,7 +202,7 @@
 block discarded – undo
202 202
         $result = '';
203 203
 
204 204
         foreach ($this->elements as $element) {
205
-            $result .= $element->render($indentLevel) . "\n\n";
205
+            $result .= $element->render($indentLevel)."\n\n";
206 206
         }
207 207
 
208 208
         return rtrim($result, "\n");
Please login to merge, or discard this patch.
source/Spiral/Reactor/Body/DocComment.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     {
24 24
         $lines = $this->getLines();
25 25
 
26
-        array_walk($lines, function (&$line) use ($search, $replace) {
26
+        array_walk($lines, function(&$line) use ($search, $replace) {
27 27
             $line = str_replace($search, $replace, $line);
28 28
         });
29 29
 
Please login to merge, or discard this patch.