Completed
Push — master ( 97252c...d31e57 )
by Nate
03:18
created
src/AbstractEnum.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
     public function __toString()
54 54
     {
55
-        return (string) $this->value;
55
+        return (string)$this->value;
56 56
     }
57 57
 
58 58
     /**
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
      */
138 138
     public static function __callStatic($name, $arguments)
139 139
     {
140
-        $constant = @constant('static::' . $name);
140
+        $constant = @constant('static::'.$name);
141 141
 
142 142
         if (null === $constant) {
143 143
             throw new BadMethodCallException(sprintf('Could not find constant "%s" for class "%s"', $name, static::class));
Please login to merge, or discard this patch.