@@ -34,7 +34,7 @@ |
||
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 | } |
@@ -34,7 +34,7 @@ |
||
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 | } |
@@ -39,7 +39,7 @@ |
||
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 | } |