@@ -17,10 +17,19 @@ |
||
17 | 17 | |
18 | 18 | interface ResetPasswordPageInterface extends SymfonyPageInterface |
19 | 19 | { |
20 | + /** |
|
21 | + * @return void |
|
22 | + */ |
|
20 | 23 | public function reset(): void; |
21 | 24 | |
25 | + /** |
|
26 | + * @return void |
|
27 | + */ |
|
22 | 28 | public function specifyNewPassword(string $password): void; |
23 | 29 | |
30 | + /** |
|
31 | + * @return void |
|
32 | + */ |
|
24 | 33 | public function specifyConfirmPassword(string $password): void; |
25 | 34 | |
26 | 35 | public function checkValidationMessageFor(string $element, string $message): bool; |
@@ -84,6 +84,7 @@ discard block |
||
84 | 84 | |
85 | 85 | /** |
86 | 86 | * @param string $source |
87 | + * @param string $content |
|
87 | 88 | * |
88 | 89 | * @throws \RuntimeException |
89 | 90 | */ |
@@ -96,6 +97,7 @@ discard block |
||
96 | 97 | |
97 | 98 | /** |
98 | 99 | * @param string $source |
100 | + * @param string $content |
|
99 | 101 | * |
100 | 102 | * @throws \RuntimeException |
101 | 103 | */ |
@@ -17,5 +17,8 @@ |
||
17 | 17 | |
18 | 18 | interface ChannelContextSetterInterface |
19 | 19 | { |
20 | + /** |
|
21 | + * @return void |
|
22 | + */ |
|
20 | 23 | public function setChannel(ChannelInterface $channel); |
21 | 24 | } |
@@ -17,5 +17,8 @@ |
||
17 | 17 | |
18 | 18 | interface SharedSecurityServiceInterface |
19 | 19 | { |
20 | + /** |
|
21 | + * @return void |
|
22 | + */ |
|
20 | 23 | public function performActionAsAdminUser(AdminUserInterface $adminUser, callable $action); |
21 | 24 | } |
@@ -29,13 +29,18 @@ |
||
29 | 29 | |
30 | 30 | /** |
31 | 31 | * @param string $key |
32 | + * @return void |
|
32 | 33 | */ |
33 | 34 | public function set($key, $resource); |
34 | 35 | |
36 | + /** |
|
37 | + * @return string |
|
38 | + */ |
|
35 | 39 | public function getLatestResource(); |
36 | 40 | |
37 | 41 | /** |
38 | 42 | * @throws \RuntimeException |
43 | + * @return void |
|
39 | 44 | */ |
40 | 45 | public function setClipboard(array $clipboard); |
41 | 46 | } |
@@ -17,5 +17,8 @@ |
||
17 | 17 | |
18 | 18 | interface ShipmentEmailManagerInterface |
19 | 19 | { |
20 | + /** |
|
21 | + * @return void |
|
22 | + */ |
|
20 | 23 | public function sendConfirmationEmail(ShipmentInterface $shipment): void; |
21 | 24 | } |
@@ -17,5 +17,8 @@ |
||
17 | 17 | |
18 | 18 | interface FakeChannelCodeProviderInterface |
19 | 19 | { |
20 | + /** |
|
21 | + * @return string|null |
|
22 | + */ |
|
20 | 23 | public function getCode(Request $request): ?string; |
21 | 24 | } |
@@ -18,5 +18,8 @@ |
||
18 | 18 | |
19 | 19 | interface IpAssignerInterface |
20 | 20 | { |
21 | + /** |
|
22 | + * @return void |
|
23 | + */ |
|
21 | 24 | public function assign(OrderInterface $order, Request $request): void; |
22 | 25 | } |
@@ -18,5 +18,8 @@ |
||
18 | 18 | |
19 | 19 | interface ChannelSetupInterface |
20 | 20 | { |
21 | + /** |
|
22 | + * @return void |
|
23 | + */ |
|
21 | 24 | public function setup(LocaleInterface $locale, CurrencyInterface $currency): void; |
22 | 25 | } |