Test Failed
Push — master ( da2c9c...d0cc4d )
by Kirill
02:03
created
src/Reflection.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Railt\Reflection\Contracts\Document as DocumentInterface;
15 15
 use Railt\Reflection\Contracts\Reflection as ReflectionInterface;
16 16
 use Railt\Reflection\Contracts\Type;
17
-use Railt\Reflection\Exception\TypeConflictException;
18 17
 use Railt\Reflection\Exception\TypeNotFoundException;
19 18
 
20 19
 /**
Please login to merge, or discard this patch.
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.