Passed
Push — 7.x ( 2b11c5...0a025f )
by Adrien
08:48
created
SplTypeTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
      */
55 55
     final public function __toString(): string
56 56
     {
57
-        return (string) $this->__default;
57
+        return (string)$this->__default;
58 58
     }
59 59
 
60 60
     /**
Please login to merge, or discard this patch.
Reflection/SplReflectionEnumProxy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -229,7 +229,7 @@
 block discarded – undo
229 229
                         && isset($value)
230 230
                         && (
231 231
                             \is_scalar($value) && \call_user_func('is_' . $this->getBackingType(), $value)
232
-                            || \is_a($value, (string) $this->getBackingType())
232
+                            || \is_a($value, (string)$this->getBackingType())
233 233
                         )
234 234
                     )
235 235
                 ) {
Please login to merge, or discard this patch.
Reflection/SplReflectionEnumHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,8 +20,8 @@
 block discarded – undo
20 20
  */
21 21
 final class SplReflectionEnumHelper
22 22
 {
23
-    private static ?\ReflectionNamedType $rnts = null;
24
-    private static ?\ReflectionNamedType $rnti = null;
23
+    private static ? \ReflectionNamedType $rnts = null;
24
+    private static ? \ReflectionNamedType $rnti = null;
25 25
 
26 26
     private function __construct()
27 27
     {
Please login to merge, or discard this patch.