@@ -17,26 +17,47 @@ |
||
17 | 17 | |
18 | 18 | interface UpdatePageInterface extends BaseUpdatePageInterface |
19 | 19 | { |
20 | + /** |
|
21 | + * @return void |
|
22 | + */ |
|
20 | 23 | public function enable(): void; |
21 | 24 | |
25 | + /** |
|
26 | + * @return void |
|
27 | + */ |
|
22 | 28 | public function disable(): void; |
23 | 29 | |
24 | 30 | public function getFullName(): string; |
25 | 31 | |
32 | + /** |
|
33 | + * @return void |
|
34 | + */ |
|
26 | 35 | public function changeFirstName(string $firstName): void; |
27 | 36 | |
28 | 37 | public function getFirstName(): string; |
29 | 38 | |
39 | + /** |
|
40 | + * @return void |
|
41 | + */ |
|
30 | 42 | public function changeLastName(string $lastName): void; |
31 | 43 | |
32 | 44 | public function getLastName(): string; |
33 | 45 | |
46 | + /** |
|
47 | + * @return void |
|
48 | + */ |
|
34 | 49 | public function changeEmail(string $email): void; |
35 | 50 | |
51 | + /** |
|
52 | + * @return void |
|
53 | + */ |
|
36 | 54 | public function changePassword(string $password): void; |
37 | 55 | |
38 | 56 | public function getPassword(): string; |
39 | 57 | |
58 | + /** |
|
59 | + * @return void |
|
60 | + */ |
|
40 | 61 | public function subscribeToTheNewsletter(): void; |
41 | 62 | |
42 | 63 | public function isSubscribedToTheNewsletter(): 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 |