Преглед на файлове

Section resolver exepction

feature/ticket
Fab преди 3 години
родител
ревизия
52ec4952e6
променени са 1 файла, в които са добавени 7 реда и са изтрити 3 реда
  1. +7
    -3
      Resolver/SectionResolver.php

+ 7
- 3
Resolver/SectionResolver.php Целия файл

@@ -29,13 +29,17 @@ class SectionResolver
$currentAdminSection = null;
$userMerchant = $this->merchantResolver->getUserMerchant();

if($userMerchant!==null){
if ($userMerchant !== null) {
$currentAdminSection = $userMerchant->getCurrentAdminSection();
}

if($currentAdminSection === null){
$currentAdminSection = $this->sectionRepository->findOneBy(array('isDefault'=>true));
if ($currentAdminSection === null) {
$currentAdminSection = $this->sectionRepository->findOneBy(array('isDefault' => true));
if ($currentAdminSection === null) {
throw new \ErrorException('Aucune section par défaut définie pour ce merchant');
}
}

return $currentAdminSection;
}


Loading…
Отказ
Запис