@@ -64,11 +64,11 @@ test('setDefaults() + array', function () {
6464 'city ' => 'zzz ' ,
6565 ],
6666 ],
67- ], $ form ->getValues (true ));
67+ ], $ form ->getValues (' array ' ));
6868});
6969
7070
71- test ('submitted form + getValues(true ) ' , function () {
71+ test ('submitted form + getValues(array ) ' , function () {
7272 $ _SERVER ['REQUEST_METHOD ' ] = 'POST ' ;
7373
7474 $ form = createForm ();
@@ -82,7 +82,7 @@ test('submitted form + getValues(true)', function () {
8282 'city ' => 'sent city ' ,
8383 ],
8484 ],
85- ], $ form ->getValues (true ));
85+ ], $ form ->getValues (' array ' ));
8686});
8787
8888
@@ -104,7 +104,7 @@ test('submitted form + reset()', function () {
104104 'city ' => '' ,
105105 ],
106106 ],
107- ], $ form ->getValues (true ));
107+ ], $ form ->getValues (' array ' ));
108108});
109109
110110
@@ -130,7 +130,7 @@ test('setValues() + array', function () {
130130 'city ' => 'sent city ' ,
131131 ],
132132 ],
133- ], $ form ->getValues (true ));
133+ ], $ form ->getValues (' array ' ));
134134
135135 // erase
136136 $ form ->setValues ([
@@ -149,7 +149,7 @@ test('setValues() + array', function () {
149149 'city ' => '' ,
150150 ],
151151 ],
152- ], $ form ->getValues (true ));
152+ ], $ form ->getValues (' array ' ));
153153});
154154
155155
@@ -261,7 +261,7 @@ test('onSuccess test', function () {
261261});
262262
263263
264- test ('submitted form + setValidationScope() + getValues(true ) ' , function () {
264+ test ('submitted form + setValidationScope() + getValues(array ) ' , function () {
265265 $ _SERVER ['REQUEST_METHOD ' ] = 'POST ' ;
266266 $ _POST ['send ' ] = '' ;
267267
@@ -275,11 +275,11 @@ test('submitted form + setValidationScope() + getValues(true)', function () {
275275 'age ' => 999 ,
276276 'second ' => [],
277277 ],
278- ], $ form ->getValues (true ));
278+ ], $ form ->getValues (' array ' ));
279279});
280280
281281
282- test ('submitted form + setValidationScope() + getValues(true ) ' , function () {
282+ test ('submitted form + setValidationScope() + getValues(array ) ' , function () {
283283 $ _SERVER ['REQUEST_METHOD ' ] = 'POST ' ;
284284 $ _POST ['send ' ] = '' ;
285285
@@ -294,5 +294,5 @@ test('submitted form + setValidationScope() + getValues(true)', function () {
294294 'city ' => 'sent city ' ,
295295 ],
296296 ],
297- ], $ form ->getValues (true ));
297+ ], $ form ->getValues (' array ' ));
298298});
0 commit comments