Skip to content

Commit a754bd3

Browse files
committed
linting
1 parent 01ec771 commit a754bd3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Constraints/CoerciveTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function dataCoerceCases()
3939
array('array', '[45]', '45', true), // #5
4040
array('object', '{"a":"b"}', null, false), // #6
4141
array('array', '[{"a":"b"}]', null, false), // #7
42-
array('array', '[1,2]', array(1,2), false), // #8
42+
array('array', '[1,2]', array(1, 2), false), // #8
4343
),
4444
'integer' => array(
4545
array('string', '"45"', 45, true), // #9
@@ -173,7 +173,7 @@ public function dataCoerceCases()
173173
'string', null, null, false
174174
);
175175

176-
foreach ($types as $toType => $testCases) {
176+
foreach ($types as $toType => $testCases) {
177177
foreach ($testCases as $testCase) {
178178
$tests[] = array(
179179
sprintf('{"properties":{"propertyOne":{"type":"%s"}}}', strtolower($toType)),

0 commit comments

Comments
 (0)