Completed
Push — master ( c7f3c1...18a515 )
by Alexandr
17:08
created
src/Type/TypeMap.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
                 $name = $name == 'Datetime' ? 'DateTime' : $name;
98 98
                 $name = $name == 'Datetimetz' ? 'DateTimeTz' : $name;
99 99
 
100
-                $className                       = 'Youshido\GraphQL\Type\Scalar\\' . $name . 'Type';
100
+                $className                       = 'Youshido\GraphQL\Type\Scalar\\'.$name.'Type';
101 101
                 self::$scalarObjectsCache[$type] = new $className();
102 102
             }
103 103
 
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
 
116 116
     public static function isScalarType($typeName)
117 117
     {
118
-        if(is_object($typeName)) {
118
+        if (is_object($typeName)) {
119 119
             return false;
120 120
         }
121 121
 
Please login to merge, or discard this patch.