@@ -168,7 +168,7 @@ |
||
168 | 168 | */ |
169 | 169 | protected function error(\Throwable $error): ExternalFileException |
170 | 170 | { |
171 | - if (! $error instanceof ExternalFileException) { |
|
171 | + if (!$error instanceof ExternalFileException) { |
|
172 | 172 | $error = new ReflectionException($error->getMessage(), $error->getCode(), $error); |
173 | 173 | } |
174 | 174 |
@@ -137,7 +137,7 @@ |
||
137 | 137 | */ |
138 | 138 | public function getDefinition(string $name): ?TypeDefinition |
139 | 139 | { |
140 | - if (! \in_array($name, $this->types, true)) { |
|
140 | + if (!\in_array($name, $this->types, true)) { |
|
141 | 141 | return null; |
142 | 142 | } |
143 | 143 |
@@ -29,7 +29,7 @@ |
||
29 | 29 | abstract protected function fetch($type): TypeDefinition; |
30 | 30 | |
31 | 31 | /** |
32 | - * @return iterable|TypeDefinition[] |
|
32 | + * @return \Generator |
|
33 | 33 | */ |
34 | 34 | public function getDefinitions(): iterable |
35 | 35 | { |
@@ -49,7 +49,7 @@ |
||
49 | 49 | public function __toString(): string |
50 | 50 | { |
51 | 51 | try { |
52 | - $parent = (string)$this->getParentDefinition(); |
|
52 | + $parent = (string) $this->getParentDefinition(); |
|
53 | 53 | } catch (\Throwable $e) { |
54 | 54 | $parent = '?<?>'; |
55 | 55 | } |
@@ -31,15 +31,15 @@ |
||
31 | 31 | */ |
32 | 32 | public static function getType(): TypeInterface |
33 | 33 | { |
34 | - return Type::of(Type::INTERFACE); |
|
34 | + return Type::of(Type::interface); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | /** |
38 | 38 | * @param TypeDefinition $definition |
39 | 39 | * @return bool |
40 | 40 | */ |
41 | - public function instanceOf(TypeDefinition $definition): bool |
|
41 | + public function instanceof(TypeDefinition $definition): bool |
|
42 | 42 | { |
43 | - return $this->isImplements($definition) || parent::instanceOf($definition); |
|
43 | + return $this->isImplements($definition) || parent::instanceof($definition); |
|
44 | 44 | } |
45 | 45 | } |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | /** |
38 | 38 | * @var string |
39 | 39 | */ |
40 | - public const INTERFACE = 'Interface'; |
|
40 | + public const interface = 'Interface'; |
|
41 | 41 | |
42 | 42 | /** |
43 | 43 | * @var string |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | public const ROOT_TYPES = [ |
114 | 114 | self::SCALAR, |
115 | 115 | self::OBJECT, |
116 | - self::INTERFACE, |
|
116 | + self::interface, |
|
117 | 117 | self::UNION, |
118 | 118 | self::ENUM, |
119 | 119 | self::INPUT_OBJECT, |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | public const ALLOWS_TO_OUTPUT = [ |
142 | 142 | self::SCALAR, |
143 | 143 | self::OBJECT, |
144 | - self::INTERFACE, |
|
144 | + self::interface, |
|
145 | 145 | self::UNION, |
146 | 146 | self::ENUM, |
147 | 147 | self::INPUT_OBJECT, |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | * @var string[]|array[] |
159 | 159 | */ |
160 | 160 | public const INHERITANCE_TREE = [ |
161 | - self::INTERFACE => [ |
|
161 | + self::interface => [ |
|
162 | 162 | self::OBJECT => [ |
163 | 163 | self::INPUT_OBJECT |
164 | 164 | ], |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | * @param Type $type |
196 | 196 | * @return bool |
197 | 197 | */ |
198 | - public function instanceOf(Type $type): bool; |
|
198 | + public function instanceof(Type $type): bool; |
|
199 | 199 | |
200 | 200 | /** |
201 | 201 | * @param string $type |
@@ -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. |
@@ -32,7 +32,7 @@ |
||
32 | 32 | /** |
33 | 33 | * @var string |
34 | 34 | */ |
35 | - public const STDLIB_SCHEMA_PATH = __DIR__ . '/../../resources/stdlib.graphqls'; |
|
35 | + public const STDLIB_SCHEMA_PATH = __DIR__.'/../../resources/stdlib.graphqls'; |
|
36 | 36 | |
37 | 37 | /** |
38 | 38 | * GraphQLDocument constructor. |
@@ -50,8 +50,8 @@ |
||
50 | 50 | private function invoke(string $name, Definition $from = null): void |
51 | 51 | { |
52 | 52 | foreach ($this->callbacks as $callback) { |
53 | - if (! $this->has($name)) { |
|
54 | - $callback($name, $from, function (TypeDefinition $type): void { |
|
53 | + if (!$this->has($name)) { |
|
54 | + $callback($name, $from, function(TypeDefinition $type): void { |
|
55 | 55 | $this->add($type); |
56 | 56 | }); |
57 | 57 | } |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | |
36 | 36 | /** |
37 | 37 | * @param string|null $name |
38 | - * @return iterable|DirectiveInvocation[]|\Generator |
|
38 | + * @return \Generator |
|
39 | 39 | */ |
40 | 40 | public function getDirectives(string $name = null): iterable |
41 | 41 | { |
@@ -48,6 +48,7 @@ discard block |
||
48 | 48 | |
49 | 49 | /** |
50 | 50 | * @param DirectiveInvocation ...$invocations |
51 | + * @param DirectiveInvocation[] $invocations |
|
51 | 52 | * @return ProvidesDirectives|$this |
52 | 53 | */ |
53 | 54 | public function withDirective(DirectiveInvocation ...$invocations): ProvidesDirectives |