Test Setup Failed
Push — master ( e8c39a...45e116 )
by Kirill
02:51 queued 12s
created
src/Executor/Extension/InterfaceTypeExtensionExecutor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,14 +27,14 @@
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
src/Executor/Extension/UnionTypeExtensionExecutor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,14 +27,14 @@
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
src/Executor/Extension/SchemaExtensionExecutor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,14 +27,14 @@
 block discarded – undo
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
         }
Please login to merge, or discard this patch.