File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
dev/tests/integration/testsuite/Magento/Customer/_files Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -232,21 +232,21 @@ public function getStreetFull()
232
232
/**
233
233
* Alias for a street setter. To be used though setDataUsingMethod('street_full', $value).
234
234
*
235
- * @param string[] $street
235
+ * @param string|string [] $street
236
236
* @return $this
237
237
*/
238
- public function setStreetFull (array $ street = null )
238
+ public function setStreetFull ($ street )
239
239
{
240
240
return $ this ->setStreet ($ street );
241
241
}
242
242
243
243
/**
244
244
* Non-magic setter for a street field
245
245
*
246
- * @param string[] $street
246
+ * @param string|string [] $street
247
247
* @return $this
248
248
*/
249
- public function setStreet (array $ street = null )
249
+ public function setStreet ($ street )
250
250
{
251
251
$ this ->setData ('street ' , $ street );
252
252
return $ this ;
Original file line number Diff line number Diff line change @@ -135,10 +135,10 @@ public function getStreet();
135
135
/**
136
136
* Set street
137
137
*
138
- * @param string[] $street
138
+ * @param string|string [] $street
139
139
* @return $this
140
140
*/
141
- public function setStreet (array $ street = null );
141
+ public function setStreet ($ street );
142
142
143
143
/**
144
144
* Get company
Original file line number Diff line number Diff line change @@ -1370,7 +1370,7 @@ public function getStreet()
1370
1370
/**
1371
1371
* {@inheritdoc}
1372
1372
*/
1373
- public function setStreet (array $ street = null )
1373
+ public function setStreet ($ street )
1374
1374
{
1375
1375
return $ this ->setData (self ::KEY_STREET , $ street );
1376
1376
}
Original file line number Diff line number Diff line change 18
18
'country_id ' => 'US ' ,
19
19
'city ' => 'CityM ' ,
20
20
'company ' => 'CompanyName ' ,
21
- 'street ' => [ 'Green str, 67 ' ] ,
21
+ 'street ' => 'Green str, 67 ' ,
22
22
'lastname ' => 'Smith ' ,
23
23
'firstname ' => 'John ' ,
24
24
'parent_id ' => 1 ,
You can’t perform that action at this time.
0 commit comments