@@ -94,7 +94,7 @@ |
||
94 | 94 | } |
95 | 95 | |
96 | 96 | /** |
97 | - * @return array |
|
97 | + * @return \Generator |
|
98 | 98 | */ |
99 | 99 | private function getLocales() |
100 | 100 | { |
@@ -94,7 +94,7 @@ |
||
94 | 94 | } |
95 | 95 | |
96 | 96 | /** |
97 | - * @return array |
|
97 | + * @return \Generator |
|
98 | 98 | */ |
99 | 99 | private function getLocales() |
100 | 100 | { |
@@ -22,6 +22,7 @@ |
||
22 | 22 | /** |
23 | 23 | * @param LocaleInterface $locale |
24 | 24 | * @param CurrencyInterface $currency |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function setup(LocaleInterface $locale, CurrencyInterface $currency); |
27 | 28 | } |
@@ -20,6 +20,7 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param ReviewerInterface $author |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function removeReviewerReviews(ReviewerInterface $author); |
25 | 26 | } |
@@ -20,6 +20,7 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param UserInterface $user |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function impersonate(UserInterface $user); |
25 | 26 | } |
@@ -22,6 +22,7 @@ |
||
22 | 22 | /** |
23 | 23 | * @param ChannelInterface $channel |
24 | 24 | * @param string $currencyCode |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function set(ChannelInterface $channel, $currencyCode); |
27 | 28 |
@@ -22,6 +22,7 @@ |
||
22 | 22 | /** |
23 | 23 | * @param CustomerInterface $customer |
24 | 24 | * @param AddressInterface $address |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function add(CustomerInterface $customer, AddressInterface $address); |
27 | 28 | } |
@@ -20,6 +20,7 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param OrderInterface $order |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function saveAddresses(OrderInterface $order); |
25 | 26 | } |
@@ -22,11 +22,13 @@ discard block |
||
22 | 22 | * @param OrderInterface $order |
23 | 23 | * |
24 | 24 | * @throws \InvalidArgumentException |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function cancel(OrderInterface $order); |
27 | 28 | |
28 | 29 | /** |
29 | 30 | * @param OrderInterface $order |
31 | + * @return void |
|
30 | 32 | */ |
31 | 33 | public function hold(OrderInterface $order); |
32 | 34 | |
@@ -34,6 +36,7 @@ discard block |
||
34 | 36 | * @param OrderInterface $order |
35 | 37 | * |
36 | 38 | * @throws \InvalidArgumentException |
39 | + * @return void |
|
37 | 40 | */ |
38 | 41 | public function sell(OrderInterface $order); |
39 | 42 | } |