Passed
Push — 7.x ( 57acf3...a5d545 )
by Adrien
03:55
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.
SplEnumUnitTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
     {
53 53
         parent::__unserialize($data);
54 54
 
55
-        $this->name = (string) $data['name'];
55
+        $this->name = (string)$data['name'];
56 56
     }
57 57
 
58 58
     /**
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
          */
75 75
         // @phpstan-ignore-next-line
76 76
         $object = /** @scrutinizer ignore-call */ new static();
77
-        $object->name = (string) $properties['name'];
77
+        $object->name = (string)$properties['name'];
78 78
 
79 79
         return $object;
80 80
     }
Please login to merge, or discard this patch.