@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Sylius\ShopApiPlugin\Factory; |
| 6 | 6 | |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Sylius\ShopApiPlugin\Factory; |
| 6 | 6 | |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Sylius\ShopApiPlugin\Factory; |
| 6 | 6 | |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | |
| 29 | 29 | public function provide(string $email): CustomerInterface |
| 30 | 30 | { |
| 31 | - $customer = $this->customerRepository->findOneBy(['email' => $email]); |
|
| 31 | + $customer = $this->customerRepository->findOneBy(['email' => $email]); |
|
| 32 | 32 | |
| 33 | 33 | if (null === $customer) { |
| 34 | 34 | /** @var CustomerInterface $customer */ |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Sylius\ShopApiPlugin\Factory; |
| 6 | 6 | |
@@ -8,5 +8,5 @@ |
||
| 8 | 8 | |
| 9 | 9 | interface CartQueryInterface |
| 10 | 10 | { |
| 11 | - public function findByToken(?string $orderToken): CartSummaryView; |
|
| 11 | + public function findByToken(? string $orderToken) : CartSummaryView; |
|
| 12 | 12 | } |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | $this->cartViewFactory = $cartViewFactory; |
| 35 | 35 | } |
| 36 | 36 | |
| 37 | - public function findByToken(?string $orderToken): CartSummaryView |
|
| 37 | + public function findByToken(? string $orderToken) : CartSummaryView |
|
| 38 | 38 | { |
| 39 | 39 | /** @var OrderInterface $cart */ |
| 40 | 40 | $cart = $this->cartRepository->findOneBy(['tokenValue' => $orderToken]); |
@@ -8,7 +8,7 @@ |
||
| 8 | 8 | |
| 9 | 9 | interface ProductDetailsQueryInterface |
| 10 | 10 | { |
| 11 | - public function findOneBySlug(string $channelCode, string $productSlug, ?string $localeCode): ProductView; |
|
| 11 | + public function findOneBySlug(string $channelCode, string $productSlug, ? string $localeCode) : ProductView; |
|
| 12 | 12 | |
| 13 | - public function findOneByCode(string $channelCode, string $productCode, ?string $localeCode): ProductView; |
|
| 13 | + public function findOneByCode(string $channelCode, string $productCode, ? string $localeCode) : ProductView; |
|
| 14 | 14 | } |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | $this->productViewFactory = $productViewFactory; |
| 34 | 34 | } |
| 35 | 35 | |
| 36 | - public function findOneBySlug(string $channelCode, string $productSlug, ?string $localeCode): ProductView |
|
| 36 | + public function findOneBySlug(string $channelCode, string $productSlug, ? string $localeCode) : ProductView |
|
| 37 | 37 | { |
| 38 | 38 | $channel = $this->getChannel($channelCode); |
| 39 | 39 | $localeCode = $this->getLocaleCode($localeCode, $channel); |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | return $this->productViewFactory->create($product, $channel, $localeCode); |
| 46 | 46 | } |
| 47 | 47 | |
| 48 | - public function findOneByCode(string $channelCode, string $productCode, ?string $localeCode): ProductView |
|
| 48 | + public function findOneByCode(string $channelCode, string $productCode, ? string $localeCode) : ProductView |
|
| 49 | 49 | { |
| 50 | 50 | $channel = $this->getChannel($channelCode); |
| 51 | 51 | $localeCode = $this->getLocaleCode($localeCode, $channel); |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | Assert::oneOf($localeCode, $supportedLocaleCodes); |
| 73 | 73 | } |
| 74 | 74 | |
| 75 | - private function getChannel(?string $channelCode): ChannelInterface |
|
| 75 | + private function getChannel(? string $channelCode) : ChannelInterface |
|
| 76 | 76 | { |
| 77 | 77 | /** @var ChannelInterface $channel */ |
| 78 | 78 | $channel = $this->channelRepository->findOneByCode($channelCode); |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | return $channel; |
| 83 | 83 | } |
| 84 | 84 | |
| 85 | - private function getLocaleCode(?string $localeCode, ChannelInterface $channel): string |
|
| 85 | + private function getLocaleCode(? string $localeCode, ChannelInterface $channel) : string |
|
| 86 | 86 | { |
| 87 | 87 | $localeCode = $localeCode ?? $channel->getDefaultLocale()->getCode(); |
| 88 | 88 | $this->assertLocaleSupport($localeCode, $channel->getLocales()); |