@@ -336,31 +336,31 @@ public function validateDataProvider()
336
336
return [
337
337
'firstname ' => [
338
338
array_merge (array_diff_key ($ data , ['firstname ' => '' ]), ['country_id ' => $ countryId ++]),
339
- ['Please enter the first name . ' ],
339
+ ['firstname is a required field . ' ],
340
340
],
341
341
'lastname ' => [
342
342
array_merge (array_diff_key ($ data , ['lastname ' => '' ]), ['country_id ' => $ countryId ++]),
343
- ['Please enter the last name . ' ],
343
+ ['lastname is a required field . ' ],
344
344
],
345
345
'street ' => [
346
346
array_merge (array_diff_key ($ data , ['street ' => '' ]), ['country_id ' => $ countryId ++]),
347
- ['Please enter the street . ' ],
347
+ ['street is a required field . ' ],
348
348
],
349
349
'city ' => [
350
350
array_merge (array_diff_key ($ data , ['city ' => '' ]), ['country_id ' => $ countryId ++]),
351
- ['Please enter the city . ' ],
351
+ ['city is a required field . ' ],
352
352
],
353
353
'telephone ' => [
354
354
array_merge (array_diff_key ($ data , ['telephone ' => '' ]), ['country_id ' => $ countryId ++]),
355
- ['Please enter the phone number . ' ],
355
+ ['telephone is a required field . ' ],
356
356
],
357
357
'postcode ' => [
358
358
array_merge (array_diff_key ($ data , ['postcode ' => '' ]), ['country_id ' => $ countryId ++]),
359
- ['Please enter the zip/postal code . ' ],
359
+ ['postcode is a required field . ' ],
360
360
],
361
361
'country_id ' => [
362
362
array_diff_key ($ data , ['country_id ' => '' ]),
363
- ['Please enter the country . ' ],
363
+ ['countryId is a required field . ' ],
364
364
],
365
365
'validated ' => [array_merge ($ data , ['country_id ' => $ countryId ++]), true ],
366
366
];
0 commit comments