We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01ec771 commit a754bd3Copy full SHA for a754bd3
tests/Constraints/CoerciveTest.php
@@ -39,7 +39,7 @@ public function dataCoerceCases()
39
array('array', '[45]', '45', true), // #5
40
array('object', '{"a":"b"}', null, false), // #6
41
array('array', '[{"a":"b"}]', null, false), // #7
42
- array('array', '[1,2]', array(1,2), false), // #8
+ array('array', '[1,2]', array(1, 2), false), // #8
43
),
44
'integer' => array(
45
array('string', '"45"', 45, true), // #9
@@ -173,7 +173,7 @@ public function dataCoerceCases()
173
'string', null, null, false
174
);
175
176
- foreach ($types as $toType => $testCases) {
+ foreach ($types as $toType => $testCases) {
177
foreach ($testCases as $testCase) {
178
$tests[] = array(
179
sprintf('{"properties":{"propertyOne":{"type":"%s"}}}', strtolower($toType)),
0 commit comments