Passed
Pull Request — master (#53)
by Andrey
02:37
created
src/Type/AbstractEnumType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
                 yield $value;
34 34
             } elseif (\is_array($value)) {
35 35
                 $valueName = $value['name'] ?? $name;
36
-                if (! \is_string($valueName)) {
36
+                if (!\is_string($valueName)) {
37 37
                     throw new CantResolveEnumTypeException('Can\'t resolve EnumValue: wrong value configuration');
38 38
                 }
39 39
                 yield new EnumValue(
Please login to merge, or discard this patch.