소스 검색

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…
취소
저장