@@ -24,6 +24,7 @@ |
||
24 | 24 | /** |
25 | 25 | * @param OrderInterface $order |
26 | 26 | * @param Request $request |
27 | + * @return void |
|
27 | 28 | */ |
28 | 29 | public function assign(OrderInterface $order, Request $request): void; |
29 | 30 | } |
@@ -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 | } |