Completed
Push — master ( 4bf010...802657 )
by Kirill
07:20 queued 03:36
created
src/Compiler/Builder/Dependent/ArgumentBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
         $argument->withDescription($rule->getDescription());
35 35
         $argument->withModifiers($hint->getModifiers());
36 36
 
37
-        $this->when->runtime(function () use ($rule, $argument): void {
37
+        $this->when->runtime(function() use ($rule, $argument): void {
38 38
             if ($default = $rule->getDefaultValue()) {
39 39
                 $argument->withDefaultValue($this->valueOf($argument, $default));
40 40
             }
Please login to merge, or discard this patch.
src/Compiler/Builder/Dependent/InputFieldBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
         $field->withDescription($rule->getDescription());
35 35
         $field->withModifiers($hint->getModifiers());
36 36
 
37
-        $this->when->runtime(function () use ($rule, $field): void {
37
+        $this->when->runtime(function() use ($rule, $field): void {
38 38
             if ($default = $rule->getDefaultValue()) {
39 39
                 $field->withDefaultValue($this->valueOf($field, $default));
40 40
             }
Please login to merge, or discard this patch.
src/Compiler/Builder/Dependent/FieldBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
             $field->withArgument($this->dependent($ast, $field));
40 40
         }
41 41
 
42
-        $this->when->runtime(function () use ($rule, $field): void {
42
+        $this->when->runtime(function() use ($rule, $field): void {
43 43
             foreach ($rule->getDirectives() as $ast) {
44 44
                 $field->withDirective($this->dependent($ast, $field));
45 45
             }
Please login to merge, or discard this patch.