@@ -22,6 +22,7 @@ |
||
22 | 22 | { |
23 | 23 | /** |
24 | 24 | * @param OrderInterface $order |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function process(OrderInterface $order): void; |
27 | 28 | } |
@@ -22,6 +22,7 @@ |
||
22 | 22 | { |
23 | 23 | /** |
24 | 24 | * @param OrderInterface $order |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function resolve(OrderInterface $order): void; |
27 | 28 | } |
@@ -27,6 +27,7 @@ |
||
27 | 27 | * @param array $requiredUrlParameters |
28 | 28 | * |
29 | 29 | * @throws UnexpectedPageException |
30 | + * @return void |
|
30 | 31 | */ |
31 | 32 | public function verifyRoute(array $requiredUrlParameters = []); |
32 | 33 | } |
@@ -25,6 +25,7 @@ discard block |
||
25 | 25 | |
26 | 26 | /** |
27 | 27 | * @param int|null $amount |
28 | + * @return void |
|
28 | 29 | */ |
29 | 30 | public function setAmount(?int $amount): void; |
30 | 31 | |
@@ -35,6 +36,7 @@ discard block |
||
35 | 36 | |
36 | 37 | /** |
37 | 38 | * @param int|null $codeLength |
39 | + * @return void |
|
38 | 40 | */ |
39 | 41 | public function setCodeLength(?int $codeLength): void; |
40 | 42 | |
@@ -45,6 +47,7 @@ discard block |
||
45 | 47 | |
46 | 48 | /** |
47 | 49 | * @param \DateTimeInterface $expiresAt |
50 | + * @return void |
|
48 | 51 | */ |
49 | 52 | public function setExpiresAt(?\DateTimeInterface $expiresAt): void; |
50 | 53 | |
@@ -55,6 +58,7 @@ discard block |
||
55 | 58 | |
56 | 59 | /** |
57 | 60 | * @param int $usageLimit |
61 | + * @return void |
|
58 | 62 | */ |
59 | 63 | public function setUsageLimit(int $usageLimit): void; |
60 | 64 | } |
@@ -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 | } |