@@ -22,6 +22,7 @@ discard block |
||
22 | 22 | |
23 | 23 | /** |
24 | 24 | * @throws ElementNotFoundException If there is no delete account button on the page |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function deleteAccount(): void; |
27 | 28 | |
@@ -49,6 +50,9 @@ discard block |
||
49 | 50 | |
50 | 51 | public function hasImpersonateButton(): bool; |
51 | 52 | |
53 | + /** |
|
54 | + * @return void |
|
55 | + */ |
|
52 | 56 | public function impersonate(): void; |
53 | 57 | |
54 | 58 | public function hasCustomerPlacedAnyOrders(): bool; |
@@ -17,7 +17,13 @@ |
||
17 | 17 | |
18 | 18 | interface CreatePageInterface extends BaseCreatePageInterface |
19 | 19 | { |
20 | + /** |
|
21 | + * @return void |
|
22 | + */ |
|
20 | 23 | public function specifyCode(string $code): void; |
21 | 24 | |
25 | + /** |
|
26 | + * @return void |
|
27 | + */ |
|
22 | 28 | public function nameIt(string $name): void; |
23 | 29 | } |
@@ -17,6 +17,9 @@ |
||
17 | 17 | |
18 | 18 | interface UpdatePageInterface extends BaseUpdatePageInterface |
19 | 19 | { |
20 | + /** |
|
21 | + * @return void |
|
22 | + */ |
|
20 | 23 | public function nameIt(string $name): void; |
21 | 24 | |
22 | 25 | public function isCodeDisabled(): bool; |
@@ -31,7 +31,13 @@ |
||
31 | 31 | |
32 | 32 | public function getSubHeader(): string; |
33 | 33 | |
34 | + /** |
|
35 | + * @return void |
|
36 | + */ |
|
34 | 37 | public function logOut(): void; |
35 | 38 | |
39 | + /** |
|
40 | + * @return void |
|
41 | + */ |
|
36 | 42 | public function chooseChannel(string $channelName): void; |
37 | 43 | } |
@@ -17,10 +17,19 @@ |
||
17 | 17 | |
18 | 18 | interface CreatePageInterface extends BaseCreatePage |
19 | 19 | { |
20 | + /** |
|
21 | + * @return void |
|
22 | + */ |
|
20 | 23 | public function specifyRatio(string $ratio): void; |
21 | 24 | |
25 | + /** |
|
26 | + * @return void |
|
27 | + */ |
|
22 | 28 | public function chooseSourceCurrency(string $currency): void; |
23 | 29 | |
30 | + /** |
|
31 | + * @return void |
|
32 | + */ |
|
24 | 33 | public function chooseTargetCurrency(string $currency): void; |
25 | 34 | |
26 | 35 | public function hasFormValidationError(string $expectedMessage): bool; |
@@ -17,5 +17,8 @@ |
||
17 | 17 | |
18 | 18 | interface IndexPageInterface extends BaseIndexPageInterface |
19 | 19 | { |
20 | + /** |
|
21 | + * @return void |
|
22 | + */ |
|
20 | 23 | public function chooseCurrencyFilter(string $currencyName): void; |
21 | 24 | } |
@@ -19,6 +19,9 @@ |
||
19 | 19 | { |
20 | 20 | public function getRatio(): string; |
21 | 21 | |
22 | + /** |
|
23 | + * @return void |
|
24 | + */ |
|
22 | 25 | public function changeRatio(string $ratio): void; |
23 | 26 | |
24 | 27 | public function isSourceCurrencyDisabled(): bool; |
@@ -17,7 +17,13 @@ |
||
17 | 17 | |
18 | 18 | interface IndexPageInterface extends BaseIndexPageInterface |
19 | 19 | { |
20 | + /** |
|
21 | + * @return void |
|
22 | + */ |
|
20 | 23 | public function specifyFilterType(string $field, string $type): void; |
21 | 24 | |
25 | + /** |
|
26 | + * @return void |
|
27 | + */ |
|
22 | 28 | public function specifyFilterValue(string $field, string $value): void; |
23 | 29 | } |
@@ -20,6 +20,7 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @throws ElementNotFoundException |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function chooseName(string $name): void; |
25 | 26 |