Completed
Push — master ( 19c1a9...20c89f )
by Anton
02:08
created
source/Spiral/Core/Container.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -517,7 +517,7 @@
 block discarded – undo
517 517
 
518 518
         if (!$injector instanceof InjectorInterface) {
519 519
             throw new InjectionException(
520
-                "Class '" . get_class($injector) . "' must be an instance of InjectorInterface for '{$reflection->getName()}'"
520
+                "Class '".get_class($injector)."' must be an instance of InjectorInterface for '{$reflection->getName()}'"
521 521
             );
522 522
         }
523 523
 
Please login to merge, or discard this patch.
source/Spiral/Core/Exceptions/Container/ArgumentException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
 
41 41
         $name = $context->getName();
42 42
         if ($context instanceof \ReflectionMethod) {
43
-            $name = $context->class . '::' . $name;
43
+            $name = $context->class.'::'.$name;
44 44
         }
45 45
 
46 46
         parent::__construct("Unable to resolve '{$parameter->name}' argument in '{$name}'");
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
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
     {
236 236
         self::register();
237 237
 
238
-        $uri = 'spiral://' . spl_object_hash($stream);
238
+        $uri = 'spiral://'.spl_object_hash($stream);
239 239
         self::$uris[$uri] = $stream;
240 240
 
241 241
         return $uri;
@@ -288,7 +288,7 @@  discard block
 block discarded – undo
288 288
     public static function releaseUri($uri)
289 289
     {
290 290
         if ($uri instanceof StreamInterface) {
291
-            $uri = 'spiral://' . spl_object_hash($uri);
291
+            $uri = 'spiral://'.spl_object_hash($uri);
292 292
         }
293 293
 
294 294
         unset(self::$uris[$uri]);
Please login to merge, or discard this patch.
source/Spiral/Files/FileManager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
         $path = str_replace(['//', '\\'], '/', $path);
393 393
 
394 394
         //Potentially open links and ../ type directories?
395
-        return rtrim($path, '/') . ($asDirectory ? '/' : '');
395
+        return rtrim($path, '/').($asDirectory ? '/' : '');
396 396
     }
397 397
 
398 398
     /**
@@ -423,7 +423,7 @@  discard block
 block discarded – undo
423 423
                     $relative = array_pad($relative, $padLength, '..');
424 424
                     break;
425 425
                 } else {
426
-                    $relative[0] = './' . $relative[0];
426
+                    $relative[0] = './'.$relative[0];
427 427
                 }
428 428
             }
429 429
         }
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
@@ -51,8 +51,8 @@  discard block
 block discarded – undo
51 51
         }
52 52
 
53 53
         //Delimiters between rows and sub-arrays.
54
-        $subIndent = "\n" . str_repeat(self::INDENT, $level + 2);
55
-        $keyIndent = "\n" . str_repeat(self::INDENT, $level + 1);
54
+        $subIndent = "\n".str_repeat(self::INDENT, $level + 2);
55
+        $keyIndent = "\n".str_repeat(self::INDENT, $level + 1);
56 56
 
57 57
         //No keys for associated array
58 58
         $associated = array_diff_key($array, array_keys(array_keys($array)));
@@ -74,28 +74,28 @@  discard block
 block discarded – undo
74 74
                         var_export($key, true),
75 75
                         $innerIndent, ' ',
76 76
                         STR_PAD_RIGHT
77
-                    ) . " => ";
77
+                    )." => ";
78 78
             }
79 79
 
80 80
             if (!is_array($value)) {
81
-                $result[] = $prefix . $this->packValue($value);
81
+                $result[] = $prefix.$this->packValue($value);
82 82
                 continue;
83 83
             }
84 84
 
85 85
             if ($value === []) {
86
-                $result[] = $prefix . "[]";
86
+                $result[] = $prefix."[]";
87 87
                 continue;
88 88
             }
89 89
 
90 90
             $subArray = $this->packArray($value, $level + 1);
91
-            $result[] = $prefix . "[{$subIndent}" . $subArray . "{$keyIndent}]";
91
+            $result[] = $prefix."[{$subIndent}".$subArray."{$keyIndent}]";
92 92
         }
93 93
 
94 94
         if ($level !== 0) {
95 95
             return $result ? join(",{$keyIndent}", $result) : "";
96 96
         }
97 97
 
98
-        return "[{$keyIndent}" . join(",{$keyIndent}", $result) . "\n]";
98
+        return "[{$keyIndent}".join(",{$keyIndent}", $result)."\n]";
99 99
     }
100 100
 
101 101
     /**
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
         if (is_string($value) && class_exists($value)) {
134 134
             $reflection = new \ReflectionClass($value);
135 135
 
136
-            return '\\' . $reflection->getName() . '::class';
136
+            return '\\'.$reflection->getName().'::class';
137 137
         }
138 138
 
139 139
         return var_export($value, true);
Please login to merge, or discard this patch.
source/Spiral/Debug/Dumper.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
 
128 128
         if (!$hideHeader && !empty($name)) {
129 129
             //Showing element name (if any provided)
130
-            $header = $indent . $this->style->apply($name, 'name');
130
+            $header = $indent.$this->style->apply($name, 'name');
131 131
 
132 132
             //Showing equal sing
133 133
             $header .= $this->style->apply(' = ', 'syntax', '=');
@@ -137,24 +137,24 @@  discard block
 block discarded – undo
137 137
 
138 138
         if ($level > $this->maxLevel) {
139 139
             //Dumper is not reference based, we can't dump too deep values
140
-            return $indent . $this->style->apply('-too deep-', 'maxLevel') . "\n";
140
+            return $indent.$this->style->apply('-too deep-', 'maxLevel')."\n";
141 141
         }
142 142
 
143 143
         $type = strtolower(gettype($value));
144 144
 
145 145
         if ($type == 'array') {
146
-            return $header . $this->dumpArray($value, $level, $hideHeader);
146
+            return $header.$this->dumpArray($value, $level, $hideHeader);
147 147
         }
148 148
 
149 149
         if ($type == 'object') {
150
-            return $header . $this->dumpObject($value, $level, $hideHeader);
150
+            return $header.$this->dumpObject($value, $level, $hideHeader);
151 151
         }
152 152
 
153 153
         if ($type == 'resource') {
154 154
             //No need to dump resource value
155
-            $element = get_resource_type($value) . ' resource ';
155
+            $element = get_resource_type($value).' resource ';
156 156
 
157
-            return $header . $this->style->apply($element, 'type', 'resource') . "\n";
157
+            return $header.$this->style->apply($element, 'type', 'resource')."\n";
158 158
         }
159 159
 
160 160
         //Value length
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
         }
182 182
 
183 183
         //Including value
184
-        return $header . ' ' . $this->style->apply($element, 'value', $type) . "\n";
184
+        return $header.' '.$this->style->apply($element, 'value', $type)."\n";
185 185
     }
186 186
 
187 187
     /**
@@ -199,8 +199,8 @@  discard block
 block discarded – undo
199 199
             $count = count($array);
200 200
 
201 201
             //Array size and scope
202
-            $output = $this->style->apply("array({$count})", 'type', 'array') . "\n";
203
-            $output .= $indent . $this->style->apply('[', 'syntax', '[') . "\n";
202
+            $output = $this->style->apply("array({$count})", 'type', 'array')."\n";
203
+            $output .= $indent.$this->style->apply('[', 'syntax', '[')."\n";
204 204
         } else {
205 205
             $output = '';
206 206
         }
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
 
220 220
         if (!$hideHeader) {
221 221
             //Closing array scope
222
-            $output .= $indent . $this->style->apply(']', 'syntax', ']') . "\n";
222
+            $output .= $indent.$this->style->apply(']', 'syntax', ']')."\n";
223 223
         }
224 224
 
225 225
         return $output;
@@ -242,10 +242,10 @@  discard block
 block discarded – undo
242 242
         $indent = $this->style->indent($level);
243 243
 
244 244
         if (!$hideHeader) {
245
-            $type = ($class ?: get_class($object)) . ' object ';
245
+            $type = ($class ?: get_class($object)).' object ';
246 246
 
247
-            $header = $this->style->apply($type, 'type', 'object') . "\n";
248
-            $header .= $indent . $this->style->apply('(', 'syntax', '(') . "\n";
247
+            $header = $this->style->apply($type, 'type', 'object')."\n";
248
+            $header .= $indent.$this->style->apply('(', 'syntax', '(')."\n";
249 249
         } else {
250 250
             $header = '';
251 251
         }
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
 
271 271
             return $header
272 272
                 . $this->dumpValue($debugInfo, '', $level + (is_scalar($object)), true)
273
-                . $indent . $this->style->apply(')', 'syntax', ')') . "\n";
273
+                . $indent.$this->style->apply(')', 'syntax', ')')."\n";
274 274
         }
275 275
 
276 276
         $refection = new \ReflectionObject($object);
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
         }
282 282
 
283 283
         //Header, content, footer
284
-        return $header . $output . $indent . $this->style->apply(')', 'syntax', ')') . "\n";
284
+        return $header.$output.$indent.$this->style->apply(')', 'syntax', ')')."\n";
285 285
     }
286 286
 
287 287
     /**
@@ -316,7 +316,7 @@  discard block
 block discarded – undo
316 316
             $name = $this->style->apply($property->getName(), 'dynamic');
317 317
         } else {
318 318
             //Property name includes access level
319
-            $name = $property->getName() . $this->style->apply(':' . $access, 'access', $access);
319
+            $name = $property->getName().$this->style->apply(':'.$access, 'access', $access);
320 320
         }
321 321
 
322 322
         return $this->dumpValue($property->getValue($object), $name, $level + 1);
@@ -334,7 +334,7 @@  discard block
 block discarded – undo
334 334
         $reflection = new \ReflectionFunction($closure);
335 335
 
336 336
         return [
337
-            'name' => $reflection->getName() . " (lines {$reflection->getStartLine()}:{$reflection->getEndLine()})",
337
+            'name' => $reflection->getName()." (lines {$reflection->getStartLine()}:{$reflection->getEndLine()})",
338 338
             'file' => $reflection->getFileName(),
339 339
             'this' => $reflection->getClosureThis()
340 340
         ];
Please login to merge, or discard this patch.
source/functions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
             $value = '';
39 39
         }
40 40
 
41
-        $replaces[$prefix . $key . $postfix] = $value;
41
+        $replaces[$prefix.$key.$postfix] = $value;
42 42
     }
43 43
 
44 44
     return strtr($string, $replaces);
Please login to merge, or discard this patch.