@@ -27,14 +27,14 @@ |
||
27 | 27 | */ |
28 | 28 | public function enter(NodeInterface $source) |
29 | 29 | { |
30 | - if (! $source instanceof InterfaceTypeExtensionNode) { |
|
30 | + if (!$source instanceof InterfaceTypeExtensionNode) { |
|
31 | 31 | return; |
32 | 32 | } |
33 | 33 | |
34 | 34 | /** @var InterfaceType $target */ |
35 | 35 | $target = $this->document->getType($source->name->value); |
36 | 36 | |
37 | - if (! $target instanceof InterfaceType) { |
|
37 | + if (!$target instanceof InterfaceType) { |
|
38 | 38 | // TODO should throw an error |
39 | 39 | return; |
40 | 40 | } |
@@ -27,14 +27,14 @@ |
||
27 | 27 | */ |
28 | 28 | public function enter(NodeInterface $source) |
29 | 29 | { |
30 | - if (! $source instanceof UnionTypeExtensionNode) { |
|
30 | + if (!$source instanceof UnionTypeExtensionNode) { |
|
31 | 31 | return; |
32 | 32 | } |
33 | 33 | |
34 | 34 | /** @var UnionType $target */ |
35 | 35 | $target = $this->document->getType($source->name->value); |
36 | 36 | |
37 | - if (! $target instanceof UnionType) { |
|
37 | + if (!$target instanceof UnionType) { |
|
38 | 38 | // TODO should throw an error |
39 | 39 | return; |
40 | 40 | } |
@@ -27,14 +27,14 @@ |
||
27 | 27 | */ |
28 | 28 | public function enter(NodeInterface $source) |
29 | 29 | { |
30 | - if (! $source instanceof SchemaExtensionNode) { |
|
30 | + if (!$source instanceof SchemaExtensionNode) { |
|
31 | 31 | return; |
32 | 32 | } |
33 | 33 | |
34 | 34 | /** @var Schema $target */ |
35 | 35 | $target = $this->document->getSchema(); |
36 | 36 | |
37 | - if (! $target instanceof Schema) { |
|
37 | + if (!$target instanceof Schema) { |
|
38 | 38 | // TODO should throw an error |
39 | 39 | return; |
40 | 40 | } |