Fixed typo error in Grouped type class

This commit is contained in:
jitendra 2019-09-05 19:30:17 +05:30
parent 40b7126d1b
commit aae2872085
1 changed files with 1 additions and 1 deletions

View File

@ -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 = [];