@@ -133,7 +133,7 @@ |
||
133 | 133 | } |
134 | 134 | |
135 | 135 | /** |
136 | - * @return iterable |
|
136 | + * @return \Generator |
|
137 | 137 | */ |
138 | 138 | private function getLocales(): iterable |
139 | 139 | { |
@@ -24,6 +24,7 @@ |
||
24 | 24 | /** |
25 | 25 | * @param LocaleInterface $locale |
26 | 26 | * @param CurrencyInterface $currency |
27 | + * @return void |
|
27 | 28 | */ |
28 | 29 | public function setup(LocaleInterface $locale, CurrencyInterface $currency): void; |
29 | 30 | } |
@@ -22,6 +22,7 @@ |
||
22 | 22 | { |
23 | 23 | /** |
24 | 24 | * @param ReviewerInterface $author |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function removeReviewerReviews(ReviewerInterface $author): void; |
27 | 28 | } |
@@ -22,6 +22,7 @@ |
||
22 | 22 | { |
23 | 23 | /** |
24 | 24 | * @param UserInterface $user |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function impersonate(UserInterface $user): void; |
27 | 28 | } |
@@ -111,7 +111,7 @@ |
||
111 | 111 | } |
112 | 112 | |
113 | 113 | /** |
114 | - * @param mixed $parameter |
|
114 | + * @param string $parameter |
|
115 | 115 | * @param Request $request |
116 | 116 | * |
117 | 117 | * @return mixed |
@@ -24,6 +24,7 @@ |
||
24 | 24 | /** |
25 | 25 | * @param ChannelInterface $channel |
26 | 26 | * @param string $currencyCode |
27 | + * @return void |
|
27 | 28 | */ |
28 | 29 | public function set(ChannelInterface $channel, string $currencyCode): void; |
29 | 30 |
@@ -24,6 +24,7 @@ |
||
24 | 24 | /** |
25 | 25 | * @param CustomerInterface $customer |
26 | 26 | * @param AddressInterface $address |
27 | + * @return void |
|
27 | 28 | */ |
28 | 29 | public function add(CustomerInterface $customer, AddressInterface $address): void; |
29 | 30 | } |
@@ -22,6 +22,7 @@ |
||
22 | 22 | { |
23 | 23 | /** |
24 | 24 | * @param OrderInterface $order |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function saveAddresses(OrderInterface $order): void; |
27 | 28 | } |
@@ -24,11 +24,13 @@ discard block |
||
24 | 24 | * @param OrderInterface $order |
25 | 25 | * |
26 | 26 | * @throws \InvalidArgumentException |
27 | + * @return void |
|
27 | 28 | */ |
28 | 29 | public function cancel(OrderInterface $order): void; |
29 | 30 | |
30 | 31 | /** |
31 | 32 | * @param OrderInterface $order |
33 | + * @return void |
|
32 | 34 | */ |
33 | 35 | public function hold(OrderInterface $order): void; |
34 | 36 | |
@@ -36,6 +38,7 @@ discard block |
||
36 | 38 | * @param OrderInterface $order |
37 | 39 | * |
38 | 40 | * @throws \InvalidArgumentException |
41 | + * @return void |
|
39 | 42 | */ |
40 | 43 | public function sell(OrderInterface $order): void; |
41 | 44 | } |