Explorar el Código

Merge branch 'develop'

master
Guillaume hace 1 año
padre
commit
b4c5e754a8
Se han modificado 2 ficheros con 5 adiciones y 4 borrados
  1. +1
    -1
      Controller/Order/CartController.php
  2. +4
    -3
      Resolver/SectionResolver.php

+ 1
- 1
Controller/Order/CartController.php Ver fichero

@@ -17,7 +17,7 @@ use Symfony\Component\Routing\Annotation\Route;
*/
class CartController extends AbstractController
{
protected ProductFamilyInterface $productFamily;
protected ?ProductFamilyInterface $productFamily = null;
protected int $quantityOrder = 1;
protected array $orderProducts = [];


+ 4
- 3
Resolver/SectionResolver.php Ver fichero

@@ -47,7 +47,7 @@ class SectionResolver
$this->urlResolver = $urlResolver;
}

public function getCurrent($returnDefaultIfOutOfSections = false, $returnVisitedIfOutOfSection = false)
public function getCurrent($returnDefaultIfOutOfSections = false, $returnVisitedIfOutOfSection = false, $throwExceptionIfSectionNotFound = true)
{
$requestAttributesArray = $this->requestStack->getMainRequest()->attributes->all();

@@ -95,7 +95,8 @@ class SectionResolver
$sectionCurrent = $sectionStore
->setMerchant($merchantCurrent)
->getOneBySlug($requestAttributesArray['section']);
if($sectionCurrent===null){

if($sectionCurrent === null && $throwExceptionIfSectionNotFound){
throw new NotFoundHttpException('Aucun espace n\'a été trouvé');
}
}
@@ -117,7 +118,7 @@ class SectionResolver

public function isOutOfSection(): bool
{
return $this->getCurrent() == null;
return $this->getCurrent(false, false, false) == null;
}

public function getDefault(): SectionInterface

Cargando…
Cancelar
Guardar