Selaa lähdekoodia

Erreur 500 : Argument 1 passed to Lc\SovBundle\Repository\AbstractStore::getOneById() must be of the type int, string given

develop
Guillaume Bourgeois 2 vuotta sitten
vanhempi
commit
4bfe1f3ac2
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. +1
    -1
      Controller/Order/CartController.php

+ 1
- 1
Controller/Order/CartController.php Näytä tiedosto

@@ -30,7 +30,7 @@ class CartController extends AbstractController
$data = $request->request->all();

if (isset($data['order_products']['id_product_family'])) {
$idProductFamily = $data['order_products']['id_product_family'];
$idProductFamily = (int) $data['order_products']['id_product_family'];
$this->productFamily = $this->getProductFamilyContainer()->getStore()->getOneById($idProductFamily);

if(!$this->productFamily) {

Loading…
Peruuta
Tallenna