@@ -65,8 +65,9 @@ |
||
| 65 | 65 | /** @var SkuskuCurrencyInterface $locale */ |
| 66 | 66 | $locale = $this->em->getRepository(SkuskuCurrencyInterface::class)->findOneByIsoCode($currencyIdentifier); |
| 67 | 67 | |
| 68 | - if( !$locale ) |
|
| 69 | - throw new CurrencyNotFoundException(); |
|
| 68 | + if( !$locale ) { |
|
| 69 | + throw new CurrencyNotFoundException(); |
|
| 70 | + } |
|
| 70 | 71 | |
| 71 | 72 | return $locale; |
| 72 | 73 | } |
@@ -18,7 +18,8 @@ |
||
| 18 | 18 | */ |
| 19 | 19 | public function process(ContainerBuilder $container) |
| 20 | 20 | { |
| 21 | - if( !$container->hasDefinition('doctrine.orm.listeners.resolve_target_entity') ) |
|
| 22 | - return; |
|
| 21 | + if( !$container->hasDefinition('doctrine.orm.listeners.resolve_target_entity') ) { |
|
| 22 | + return; |
|
| 23 | + } |
|
| 23 | 24 | } |
| 24 | 25 | } |
| 25 | 26 | \ No newline at end of file |
@@ -51,7 +51,7 @@ |
||
| 51 | 51 | |
| 52 | 52 | if( count($currencies) > 0 ) { |
| 53 | 53 | return 'Currency: <info> correct</info>'; |
| 54 | - }else{ |
|
| 54 | + } else{ |
|
| 55 | 55 | return 'Currency: <error>not correct</error>'; |
| 56 | 56 | } |
| 57 | 57 | } |
@@ -12,8 +12,9 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | public function __construct($message = "", $code = 0, \Exception $previous = null) |
| 14 | 14 | { |
| 15 | - if( !empty($message) ) |
|
| 16 | - $message = ": " . $message; |
|
| 15 | + if( !empty($message) ) { |
|
| 16 | + $message = ": " . $message; |
|
| 17 | + } |
|
| 17 | 18 | |
| 18 | 19 | $finalMessage = sprintf("Currency not found, maybe the db table is empty%s", $message); |
| 19 | 20 | parent::__construct($finalMessage, $code, $previous); |
@@ -98,8 +98,9 @@ discard block |
||
| 98 | 98 | */ |
| 99 | 99 | public function renderPreviewCart($template = null) |
| 100 | 100 | { |
| 101 | - if( !$template ) |
|
| 102 | - $template = $this->templatePreviewCart; |
|
| 101 | + if( !$template ) { |
|
| 102 | + $template = $this->templatePreviewCart; |
|
| 103 | + } |
|
| 103 | 104 | |
| 104 | 105 | /** @var SkuskuCart $cart */ |
| 105 | 106 | $cart = $this->cartManager->getCartFromCustomer(); |
@@ -117,8 +118,9 @@ discard block |
||
| 117 | 118 | */ |
| 118 | 119 | public function renderCurrencyCart($template = null) |
| 119 | 120 | { |
| 120 | - if( !$template ) |
|
| 121 | - $template = $this->templateCurrencyCart; |
|
| 121 | + if( !$template ) { |
|
| 122 | + $template = $this->templateCurrencyCart; |
|
| 123 | + } |
|
| 122 | 124 | |
| 123 | 125 | /** @var SkuskuCurrencyInterface[] $currencies */ |
| 124 | 126 | $currencies = $this->currencyManager->getActiveCurrencies(); |
@@ -137,8 +139,9 @@ discard block |
||
| 137 | 139 | */ |
| 138 | 140 | public function renderLangCart($template = null) |
| 139 | 141 | { |
| 140 | - if( !$template ) |
|
| 141 | - $template = $this->templateLangCart; |
|
| 142 | + if( !$template ) { |
|
| 143 | + $template = $this->templateLangCart; |
|
| 144 | + } |
|
| 142 | 145 | |
| 143 | 146 | /** @var SkuskuLangInterface[] $languages */ |
| 144 | 147 | $languages = $this->langManager->getActiveLanguages(); |
@@ -73,17 +73,20 @@ discard block |
||
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | // If the user is anon. the arg $customer is a string, so i check it |
| 76 | - if( !($customer instanceof UserInterface) ) |
|
| 77 | - $customer = null; |
|
| 76 | + if( !($customer instanceof UserInterface) ) { |
|
| 77 | + $customer = null; |
|
| 78 | + } |
|
| 78 | 79 | |
| 79 | - if( !$this->allowAnonymous && !$customer ) |
|
| 80 | - throw new AccessDeniedException("Anonymous users cannot buy"); |
|
| 80 | + if( !$this->allowAnonymous && !$customer ) { |
|
| 81 | + throw new AccessDeniedException("Anonymous users cannot buy"); |
|
| 82 | + } |
|
| 81 | 83 | |
| 82 | 84 | $cart = $this->em->getRepository('GGGGino\SkuskuCartBundle\Model\SkuskuCart') |
| 83 | 85 | ->getOneNonOrderedCartByCustomer($customer); |
| 84 | 86 | |
| 85 | - if( !$cart ) |
|
| 86 | - $cart = $this->createNewCart($customer); |
|
| 87 | + if( !$cart ) { |
|
| 88 | + $cart = $this->createNewCart($customer); |
|
| 89 | + } |
|
| 87 | 90 | |
| 88 | 91 | return $cart; |
| 89 | 92 | } |
@@ -134,8 +137,9 @@ discard block |
||
| 134 | 137 | */ |
| 135 | 138 | public function addProductToCartForm(Request $request, FormInterface $form) |
| 136 | 139 | { |
| 137 | - if( $this->handled ) |
|
| 138 | - return; |
|
| 140 | + if( $this->handled ) { |
|
| 141 | + return; |
|
| 142 | + } |
|
| 139 | 143 | |
| 140 | 144 | $form->handleRequest($request); |
| 141 | 145 | |
@@ -150,11 +154,13 @@ discard block |
||
| 150 | 154 | /** @var SkuskuProductInterface $productReference */ |
| 151 | 155 | $productReference = $this->em->getReference(SkuskuProductInterface::class, $idProduct); |
| 152 | 156 | |
| 153 | - if( !($customer instanceof UserInterface) ) |
|
| 154 | - $customer = null; |
|
| 157 | + if( !($customer instanceof UserInterface) ) { |
|
| 158 | + $customer = null; |
|
| 159 | + } |
|
| 155 | 160 | |
| 156 | - if( !$this->allowAnonymous && !$customer ) |
|
| 157 | - throw new AccessDeniedException("Anonymous users cannot buy"); |
|
| 161 | + if( !$this->allowAnonymous && !$customer ) { |
|
| 162 | + throw new AccessDeniedException("Anonymous users cannot buy"); |
|
| 163 | + } |
|
| 158 | 164 | |
| 159 | 165 | $this->addProductToCart($productReference, $quantity); |
| 160 | 166 | } |
@@ -187,7 +193,7 @@ discard block |
||
| 187 | 193 | if( $productCart = $cart->getProduct($product)->first() ){ |
| 188 | 194 | // @todo what?? $productCart->getQuantity() + $quantity |
| 189 | 195 | $productCart->setQuantity($productCart->getQuantity() + $quantity); |
| 190 | - }else{ |
|
| 196 | + } else{ |
|
| 191 | 197 | $productCart = new SkuskuCartProduct(); |
| 192 | 198 | $productCart->setProduct($product); |
| 193 | 199 | $productCart->setQuantity($quantity); |
@@ -84,8 +84,9 @@ |
||
| 84 | 84 | $paymentMethod = $data->getPaymentMethod(); |
| 85 | 85 | |
| 86 | 86 | // se non è settato vuol dire che non ci sono ancora arrivato |
| 87 | - if( !$paymentMethod ) |
|
| 88 | - return false; |
|
| 87 | + if( !$paymentMethod ) { |
|
| 88 | + return false; |
|
| 89 | + } |
|
| 89 | 90 | |
| 90 | 91 | /** @var GatewayInterface $gateway */ |
| 91 | 92 | $gateway = $this->payum->getGateway($paymentMethod); |