@@ -48,7 +48,7 @@ |
||
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 | /** |
@@ -70,7 +70,7 @@ |
||
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 |
@@ -15,7 +15,6 @@ |
||
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 |
@@ -31,7 +31,7 @@ |
||
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. |