Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 86c99fa

Browse filesBrowse files
keradusnicolas-grekas
authored andcommitted
chore: CS fixes
1 parent f3b43be commit 86c99fa
Copy full SHA for 86c99fa

File tree

Expand file treeCollapse file tree

1 file changed

+8
-8
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+8
-8
lines changed

‎Tests/FormTest.php

Copy file name to clipboardExpand all lines: Tests/FormTest.php
+8-8Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.