We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -132,10 +132,10 @@ discard block |
||
132 | 132 | $prototype |
133 | 133 | // build args if argsBuilder exists |
134 | 134 | ->beforeNormalization() |
135 | - ->ifTrue(function ($field) { |
|
135 | + ->ifTrue(function($field) { |
|
136 | 136 | return isset($field['argsBuilder']); |
137 | 137 | }) |
138 | - ->then(function ($field) { |
|
138 | + ->then(function($field) { |
|
139 | 139 | $argsBuilderName = null; |
140 | 140 | |
141 | 141 | if (is_string($field['argsBuilder'])) { |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | ->end() |
157 | 157 | // build field if builder exists |
158 | 158 | ->beforeNormalization() |
159 | - ->always(function ($field) { |
|
159 | + ->always(function($field) { |
|
160 | 160 | $fieldBuilderName = null; |
161 | 161 | |
162 | 162 | if (isset($field['builder']) && is_string($field['builder'])) { |
@@ -197,10 +197,10 @@ discard block |
||
197 | 197 | ->prototype('array') |
198 | 198 | // Allow arg type short syntax (Arg: Type => Arg: {type: Type}) |
199 | 199 | ->beforeNormalization() |
200 | - ->ifTrue(function ($options) { |
|
200 | + ->ifTrue(function($options) { |
|
201 | 201 | return is_string($options); |
202 | 202 | }) |
203 | - ->then(function ($options) { |
|
203 | + ->then(function($options) { |
|
204 | 204 | return ['type' => $options]; |
205 | 205 | }) |
206 | 206 | ->end() |