Skip to content

Commit 86c99fa

Browse files
keradusnicolas-grekas
authored andcommitted
chore: CS fixes
1 parent f3b43be commit 86c99fa

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Tests/FormTest.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ public static function provideInitializeValues()
252252
'appends the submitted button value but not other submit buttons',
253253
'<input type="submit" name="bar" value="bar" />
254254
<input type="submit" name="foobar" value="foobar" />',
255-
['foobar' => ['InputFormField', 'foobar']],
255+
['foobar' => ['InputFormField', 'foobar']],
256256
],
257257
[
258258
'turns an image input into x and y fields',
@@ -263,38 +263,38 @@ public static function provideInitializeValues()
263263
'returns textareas',
264264
'<textarea name="foo">foo</textarea>
265265
<input type="submit" />',
266-
['foo' => ['TextareaFormField', 'foo']],
266+
['foo' => ['TextareaFormField', 'foo']],
267267
],
268268
[
269269
'returns inputs',
270270
'<input type="text" name="foo" value="foo" />
271271
<input type="submit" />',
272-
['foo' => ['InputFormField', 'foo']],
272+
['foo' => ['InputFormField', 'foo']],
273273
],
274274
[
275275
'returns checkboxes',
276276
'<input type="checkbox" name="foo" value="foo" checked="checked" />
277277
<input type="submit" />',
278-
['foo' => ['ChoiceFormField', 'foo']],
278+
['foo' => ['ChoiceFormField', 'foo']],
279279
],
280280
[
281281
'returns not-checked checkboxes',
282282
'<input type="checkbox" name="foo" value="foo" />
283283
<input type="submit" />',
284-
['foo' => ['ChoiceFormField', false]],
284+
['foo' => ['ChoiceFormField', false]],
285285
],
286286
[
287287
'returns radio buttons',
288288
'<input type="radio" name="foo" value="foo" />
289289
<input type="radio" name="foo" value="bar" checked="bar" />
290290
<input type="submit" />',
291-
['foo' => ['ChoiceFormField', 'bar']],
291+
['foo' => ['ChoiceFormField', 'bar']],
292292
],
293293
[
294294
'returns file inputs',
295295
'<input type="file" name="foo" />
296296
<input type="submit" />',
297-
['foo' => ['FileFormField', ['name' => '', 'type' => '', 'tmp_name' => '', 'error' => 4, 'size' => 0]]],
297+
['foo' => ['FileFormField', ['name' => '', 'type' => '', 'tmp_name' => '', 'error' => 4, 'size' => 0]]],
298298
],
299299
];
300300
}
@@ -830,7 +830,7 @@ public function testFormRegistrySetValues()
830830
3 => 3,
831831
'bar' => [
832832
'baz' => 'fbb',
833-
],
833+
],
834834
]);
835835
}
836836

0 commit comments

Comments
 (0)