@@ -22,10 +22,19 @@ |
||
22 | 22 | |
23 | 23 | public function isAvailableInChannel(string $channelName): bool; |
24 | 24 | |
25 | + /** |
|
26 | + * @return void |
|
27 | + */ |
|
25 | 28 | public function enable(): void; |
26 | 29 | |
30 | + /** |
|
31 | + * @return void |
|
32 | + */ |
|
27 | 33 | public function disable(): void; |
28 | 34 | |
35 | + /** |
|
36 | + * @return void |
|
37 | + */ |
|
29 | 38 | public function removeZone(): void; |
30 | 39 | |
31 | 40 | /** |
@@ -17,9 +17,18 @@ |
||
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 | |
30 | + /** |
|
31 | + * @return void |
|
32 | + */ |
|
24 | 33 | public function describeItAs(string $description): void; |
25 | 34 | } |
@@ -19,5 +19,8 @@ |
||
19 | 19 | { |
20 | 20 | public function isCodeDisabled(): bool; |
21 | 21 | |
22 | + /** |
|
23 | + * @return void |
|
24 | + */ |
|
22 | 25 | public function nameIt(string $name): void; |
23 | 26 | } |
@@ -260,6 +260,9 @@ |
||
260 | 260 | return $images->findAll('css', 'div[data-form-collection="item"]'); |
261 | 261 | } |
262 | 262 | |
263 | + /** |
|
264 | + * @return string |
|
265 | + */ |
|
263 | 266 | private function getImageElementByType(string $type): ?NodeElement |
264 | 267 | { |
265 | 268 | $images = $this->getElement('images'); |
@@ -17,17 +17,38 @@ |
||
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 | |
30 | + /** |
|
31 | + * @return void |
|
32 | + */ |
|
24 | 33 | public function specifyAmount(string $amount): void; |
25 | 34 | |
35 | + /** |
|
36 | + * @return void |
|
37 | + */ |
|
26 | 38 | public function chooseZone(string $name): void; |
27 | 39 | |
40 | + /** |
|
41 | + * @return void |
|
42 | + */ |
|
28 | 43 | public function chooseCategory(string $name): void; |
29 | 44 | |
45 | + /** |
|
46 | + * @return void |
|
47 | + */ |
|
30 | 48 | public function chooseCalculator(string $name): void; |
31 | 49 | |
50 | + /** |
|
51 | + * @return void |
|
52 | + */ |
|
32 | 53 | public function chooseIncludedInPrice(): void; |
33 | 54 | } |
@@ -19,5 +19,8 @@ |
||
19 | 19 | { |
20 | 20 | public function isCodeDisabled(): bool; |
21 | 21 | |
22 | + /** |
|
23 | + * @return void |
|
24 | + */ |
|
22 | 25 | public function removeZone(): void; |
23 | 26 | } |
@@ -17,19 +17,34 @@ |
||
17 | 17 | |
18 | 18 | interface CreatePageInterface extends BaseCreatePageInterface |
19 | 19 | { |
20 | + /** |
|
21 | + * @return void |
|
22 | + */ |
|
20 | 23 | public function addMember(): void; |
21 | 24 | |
22 | 25 | public function checkValidationMessageForMembers(string $message): bool; |
23 | 26 | |
27 | + /** |
|
28 | + * @return void |
|
29 | + */ |
|
24 | 30 | public function chooseMember(string $name): void; |
25 | 31 | |
32 | + /** |
|
33 | + * @return void |
|
34 | + */ |
|
26 | 35 | public function selectScope(string $scope): void; |
27 | 36 | |
28 | 37 | public function hasType(string $type): bool; |
29 | 38 | |
30 | 39 | public function isTypeFieldDisabled(): bool; |
31 | 40 | |
41 | + /** |
|
42 | + * @return void |
|
43 | + */ |
|
32 | 44 | public function nameIt(string $name): void; |
33 | 45 | |
46 | + /** |
|
47 | + * @return void |
|
48 | + */ |
|
34 | 49 | public function specifyCode(string $code): void; |
35 | 50 | } |
@@ -18,6 +18,9 @@ discard block |
||
18 | 18 | |
19 | 19 | interface UpdatePageInterface extends BaseUpdatePageInterface |
20 | 20 | { |
21 | + /** |
|
22 | + * @return void |
|
23 | + */ |
|
21 | 24 | public function nameIt(string $name): void; |
22 | 25 | |
23 | 26 | public function countMembers(): int; |
@@ -28,5 +31,8 @@ discard block |
||
28 | 31 | |
29 | 32 | public function isCodeDisabled(): bool; |
30 | 33 | |
34 | + /** |
|
35 | + * @return void |
|
36 | + */ |
|
31 | 37 | public function removeMember(ZoneMemberInterface $zoneMember): void; |
32 | 38 | } |
@@ -192,6 +192,9 @@ |
||
192 | 192 | } |
193 | 193 | } |
194 | 194 | |
195 | + /** |
|
196 | + * @return string |
|
197 | + */ |
|
195 | 198 | private function getImageElementByType(string $type): ?NodeElement |
196 | 199 | { |
197 | 200 | $images = $this->getElement('images'); |