Test Failed
Push — master ( da2c9c...d0cc4d )
by Kirill
02:03
created
src/Document.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@
 block discarded – undo
132 132
      */
133 133
     public function getTypeDefinition(string $name): ?TypeDefinition
134 134
     {
135
-        if (! \in_array($name, $this->types, true)) {
135
+        if (!\in_array($name, $this->types, true)) {
136 136
             return null;
137 137
         }
138 138
 
Please login to merge, or discard this patch.
src/Common/Renderer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     {
23 23
         $name = \ucwords(\mb_strtolower(\preg_replace('/\W+/u', ' ', $name)));
24 24
 
25
-        return (string)\str_replace(' ', '', $name);
25
+        return (string) \str_replace(' ', '', $name);
26 26
     }
27 27
 
28 28
     /**
Please login to merge, or discard this patch.