Test Failed
Push — master ( 198c54...442f01 )
by Kirill
07:23 queued 02:04
created
src/Compiler/Processor/Definition/ScalarProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
         /** @var ScalarDefinition $scalar */
30 30
         $scalar = $ast->getTypeDefinition();
31 31
 
32
-        $this->immediately(function () use ($ast, $scalar): void {
32
+        $this->immediately(function() use ($ast, $scalar): void {
33 33
             $scalar->withOffset($ast->getOffset());
34 34
             $scalar->withDescription($ast->getDescription());
35 35
         });
Please login to merge, or discard this patch.
src/Compiler/Processor/Definition/InputProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
         /** @var InputDefinition $input */
30 30
         $input = $ast->getTypeDefinition();
31 31
 
32
-        $this->immediately(function () use ($ast, $input): void {
32
+        $this->immediately(function() use ($ast, $input): void {
33 33
             $input->withOffset($ast->getOffset());
34 34
             $input->withDescription($ast->getDescription());
35 35
         });
Please login to merge, or discard this patch.
src/Compiler/Processor/Definition/EnumProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
         /** @var EnumDefinition $enum */
30 30
         $enum = $ast->getTypeDefinition();
31 31
 
32
-        $this->immediately(function () use ($ast, $enum): void {
32
+        $this->immediately(function() use ($ast, $enum): void {
33 33
             $enum->withOffset($ast->getOffset());
34 34
             $enum->withDescription($ast->getDescription());
35 35
         });
Please login to merge, or discard this patch.
src/Compiler/Processor/Definition/InterfaceProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
         /** @var InterfaceDefinition $interface */
30 30
         $interface = $ast->getTypeDefinition();
31 31
 
32
-        $this->immediately(function () use ($ast, $interface): void {
32
+        $this->immediately(function() use ($ast, $interface): void {
33 33
             $interface->withOffset($ast->getOffset());
34 34
             $interface->withDescription($ast->getDescription());
35 35
         });
Please login to merge, or discard this patch.
src/Compiler/Processor/Definition/SchemaProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
         /** @var SchemaDefinition $schema */
30 30
         $schema = $ast->getTypeDefinition();
31 31
 
32
-        $this->immediately(function () use ($ast, $schema): void {
32
+        $this->immediately(function() use ($ast, $schema): void {
33 33
             $schema->withOffset($ast->getOffset());
34 34
             $schema->withDescription($ast->getDescription());
35 35
         });
Please login to merge, or discard this patch.
src/Compiler/Processor/Definition/InputUnionProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
         /** @var InputUnionDefinition $inputUnion */
30 30
         $inputUnion = $ast->getTypeDefinition();
31 31
 
32
-        $this->immediately(function () use ($ast, $inputUnion): void {
32
+        $this->immediately(function() use ($ast, $inputUnion): void {
33 33
             $inputUnion->withOffset($ast->getOffset());
34 34
             $inputUnion->withDescription($ast->getDescription());
35 35
         });
Please login to merge, or discard this patch.
src/Compiler/Processor/Definition/DirectiveProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
         /** @var DirectiveDefinition $directive */
30 30
         $directive = $ast->getTypeDefinition();
31 31
 
32
-        $this->immediately(function () use ($ast, $directive): void {
32
+        $this->immediately(function() use ($ast, $directive): void {
33 33
             $directive->withOffset($ast->getOffset());
34 34
             $directive->withDescription($ast->getDescription());
35 35
         });
Please login to merge, or discard this patch.
src/Compiler/Processor/Definition/UnionProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
         /** @var UnionDefinition $union */
30 30
         $union = $ast->getTypeDefinition();
31 31
 
32
-        $this->immediately(function () use ($ast, $union): void {
32
+        $this->immediately(function() use ($ast, $union): void {
33 33
             $union->withOffset($ast->getOffset());
34 34
             $union->withDescription($ast->getDescription());
35 35
         });
Please login to merge, or discard this patch.
src/Compiler/Processor/Definition/ObjectProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
         /** @var ObjectDefinition $object */
30 30
         $object = $ast->getTypeDefinition();
31 31
 
32
-        $this->immediately(function () use ($ast, $object): void {
32
+        $this->immediately(function() use ($ast, $object): void {
33 33
             $object->withOffset($ast->getOffset());
34 34
             $object->withDescription($ast->getDescription());
35 35
         });
Please login to merge, or discard this patch.