@@ -17,10 +17,19 @@ |
||
17 | 17 | |
18 | 18 | interface ContactPageInterface extends PageInterface |
19 | 19 | { |
20 | + /** |
|
21 | + * @return void |
|
22 | + */ |
|
20 | 23 | public function specifyEmail(?string $email): void; |
21 | 24 | |
25 | + /** |
|
26 | + * @return void |
|
27 | + */ |
|
22 | 28 | public function specifyMessage(?string $message): void; |
23 | 29 | |
30 | + /** |
|
31 | + * @return void |
|
32 | + */ |
|
24 | 33 | public function send(): void; |
25 | 34 | |
26 | 35 | public function getValidationMessageFor(string $element): string; |
@@ -21,6 +21,9 @@ discard block |
||
21 | 21 | |
22 | 22 | public function hasLogoutButton(): bool; |
23 | 23 | |
24 | + /** |
|
25 | + * @return void |
|
26 | + */ |
|
24 | 27 | public function logOut(); |
25 | 28 | |
26 | 29 | public function getFullName(): string; |
@@ -29,12 +32,18 @@ discard block |
||
29 | 32 | |
30 | 33 | public function getAvailableCurrencies(): array; |
31 | 34 | |
35 | + /** |
|
36 | + * @return void |
|
37 | + */ |
|
32 | 38 | public function switchCurrency(string $currencyCode): void; |
33 | 39 | |
34 | 40 | public function getActiveLocale(): string; |
35 | 41 | |
36 | 42 | public function getAvailableLocales(): array; |
37 | 43 | |
44 | + /** |
|
45 | + * @return void |
|
46 | + */ |
|
38 | 47 | public function switchLocale(string $localeCode): void; |
39 | 48 | |
40 | 49 | public function getLatestProductsNames(): array; |
@@ -19,8 +19,14 @@ |
||
19 | 19 | { |
20 | 20 | public function hasPayAction(): bool; |
21 | 21 | |
22 | + /** |
|
23 | + * @return void |
|
24 | + */ |
|
22 | 25 | public function pay(): void; |
23 | 26 | |
27 | + /** |
|
28 | + * @return void |
|
29 | + */ |
|
24 | 30 | public function choosePaymentMethod(string $paymentMethodName): void; |
25 | 31 | |
26 | 32 | public function getNotifications(): array; |
@@ -17,8 +17,14 @@ discard block |
||
17 | 17 | |
18 | 18 | interface ThankYouPageInterface extends SymfonyPageInterface |
19 | 19 | { |
20 | + /** |
|
21 | + * @return void |
|
22 | + */ |
|
20 | 23 | public function goToTheChangePaymentMethodPage(): void; |
21 | 24 | |
25 | + /** |
|
26 | + * @return void |
|
27 | + */ |
|
22 | 28 | public function goToOrderDetailsInAccount(): void; |
23 | 29 | |
24 | 30 | public function hasThankYouMessage(): bool; |
@@ -31,5 +37,8 @@ discard block |
||
31 | 37 | |
32 | 38 | public function hasRegistrationButton(): bool; |
33 | 39 | |
40 | + /** |
|
41 | + * @return void |
|
42 | + */ |
|
34 | 43 | public function createAccount(): void; |
35 | 44 | } |