Fixed typo error in Grouped type class
This commit is contained in:
parent
40b7126d1b
commit
aae2872085
|
|
@ -150,7 +150,7 @@ class Grouped extends AbstractType
|
|||
*/
|
||||
public function prepareForCart($data)
|
||||
{
|
||||
if (! isset($data['qty']) || ! is_arrat($data['qty']))
|
||||
if (! isset($data['qty']) || ! is_array($data['qty']))
|
||||
return trans('shop::app.checkout.cart.integrity.missing_options');
|
||||
|
||||
$products = [];
|
||||
|
|
|
|||
Loading…
Reference in New Issue