Passed
Push — master ( 0971b0...b7d7cf )
by Kirill
03:21
created
src/AbstractTypeDefinition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
      */
49 49
     public function getDescription(): string
50 50
     {
51
-        return (string)$this->description;
51
+        return (string) $this->description;
52 52
     }
53 53
 
54 54
     /**
Please login to merge, or discard this patch.
src/Type.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
      */
71 71
     private function bootInheritance(\SplStack $stack, array $children = []): void
72 72
     {
73
-        $push = function (string $type) use ($stack): void {
73
+        $push = function(string $type) use ($stack): void {
74 74
             self::$inheritance[$type] = \array_values(\iterator_to_array($stack));
75 75
             self::$inheritance[$type][] = static::ROOT_TYPE;
76 76
 
Please login to merge, or discard this patch.
src/Reflection.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
 use Railt\Reflection\Contracts\Reflection as ReflectionInterface;
16 16
 use Railt\Reflection\Dictionary\ProxyDictionary;
17 17
 use Railt\Reflection\Dictionary\SimpleDictionary;
18
-use Railt\Reflection\Exception\ReflectionException;
19 18
 use Railt\Reflection\Introspection\IntrospectionDocument;
20 19
 use Railt\Reflection\Stdlib\StdlibDocument;
21 20
 
Please login to merge, or discard this patch.
src/Introspection/IntrospectionDocument.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     /**
32 32
      * @var string
33 33
      */
34
-    public const INTROSPECTION_SCHEMA_PATH = __DIR__ . '/../../resources/introspection.graphqls';
34
+    public const INTROSPECTION_SCHEMA_PATH = __DIR__.'/../../resources/introspection.graphqls';
35 35
 
36 36
     /**
37 37
      * IntrospectionDocument constructor.
Please login to merge, or discard this patch.