@@ -20,16 +20,19 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param string $code |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function specifyCode($code); |
25 | 26 | |
26 | 27 | /** |
27 | 28 | * @param string $name |
29 | + * @return void |
|
28 | 30 | */ |
29 | 31 | public function nameIt($name); |
30 | 32 | |
31 | 33 | /** |
32 | 34 | * @param string $description |
35 | + * @return void |
|
33 | 36 | */ |
34 | 37 | public function describeItAs($description); |
35 | 38 | } |
@@ -25,6 +25,7 @@ |
||
25 | 25 | |
26 | 26 | /** |
27 | 27 | * @param string $name |
28 | + * @return void |
|
28 | 29 | */ |
29 | 30 | public function nameIt($name); |
30 | 31 | } |
@@ -33,17 +33,20 @@ discard block |
||
33 | 33 | |
34 | 34 | /** |
35 | 35 | * @param string $name |
36 | + * @return void |
|
36 | 37 | */ |
37 | 38 | public function deleteTaxonOnPageByName($name); |
38 | 39 | |
39 | 40 | /** |
40 | 41 | * @param string $description |
41 | 42 | * @param string $languageCode |
43 | + * @return void |
|
42 | 44 | */ |
43 | 45 | public function describeItAs($description, $languageCode); |
44 | 46 | |
45 | 47 | /** |
46 | 48 | * @param TaxonInterface $taxon |
49 | + * @return void |
|
47 | 50 | */ |
48 | 51 | public function chooseParent(TaxonInterface $taxon); |
49 | 52 | |
@@ -57,17 +60,20 @@ discard block |
||
57 | 60 | /** |
58 | 61 | * @param string $name |
59 | 62 | * @param string $languageCode |
63 | + * @return void |
|
60 | 64 | */ |
61 | 65 | public function nameIt($name, $languageCode); |
62 | 66 | |
63 | 67 | /** |
64 | 68 | * @param string $code |
69 | + * @return void |
|
65 | 70 | */ |
66 | 71 | public function specifyCode($code); |
67 | 72 | |
68 | 73 | /** |
69 | 74 | * @param string $permalink |
70 | 75 | * @param string $languageCode |
76 | + * @return void |
|
71 | 77 | */ |
72 | 78 | public function specifyPermalink($permalink, $languageCode); |
73 | 79 | } |
@@ -22,11 +22,13 @@ discard block |
||
22 | 22 | /** |
23 | 23 | * @param string $description |
24 | 24 | * @param string $languageCode |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function describeItAs($description, $languageCode); |
27 | 28 | |
28 | 29 | /** |
29 | 30 | * @param TaxonInterface $taxon |
31 | + * @return void |
|
30 | 32 | */ |
31 | 33 | public function chooseParent(TaxonInterface $taxon); |
32 | 34 | |
@@ -38,12 +40,14 @@ discard block |
||
38 | 40 | /** |
39 | 41 | * @param string $name |
40 | 42 | * @param string $languageCode |
43 | + * @return void |
|
41 | 44 | */ |
42 | 45 | public function nameIt($name, $languageCode); |
43 | 46 | |
44 | 47 | /** |
45 | 48 | * @param string $permalink |
46 | 49 | * @param string $languageCode |
50 | + * @return void |
|
47 | 51 | */ |
48 | 52 | public function specifyPermalink($permalink, $languageCode); |
49 | 53 | } |
@@ -20,31 +20,37 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param string $code |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function specifyCode($code); |
25 | 26 | |
26 | 27 | /** |
27 | 28 | * @param string $name |
29 | + * @return void |
|
28 | 30 | */ |
29 | 31 | public function nameIt($name); |
30 | 32 | |
31 | 33 | /** |
32 | 34 | * @param string $amount |
35 | + * @return void |
|
33 | 36 | */ |
34 | 37 | public function specifyAmount($amount); |
35 | 38 | |
36 | 39 | /** |
37 | 40 | * @param string $name |
41 | + * @return void |
|
38 | 42 | */ |
39 | 43 | public function chooseZone($name); |
40 | 44 | |
41 | 45 | /** |
42 | 46 | * @param string $name |
47 | + * @return void |
|
43 | 48 | */ |
44 | 49 | public function chooseCategory($name); |
45 | 50 | |
46 | 51 | /** |
47 | 52 | * @param string $name |
53 | + * @return void |
|
48 | 54 | */ |
49 | 55 | public function chooseCalculator($name); |
50 | 56 | } |
@@ -18,15 +18,20 @@ discard block |
||
18 | 18 | */ |
19 | 19 | interface CreatePageInterface extends BaseCreatePageInterface |
20 | 20 | { |
21 | + /** |
|
22 | + * @return void |
|
23 | + */ |
|
21 | 24 | public function addMember(); |
22 | 25 | |
23 | 26 | /** |
24 | 27 | * @param string $message |
28 | + * @return boolean |
|
25 | 29 | */ |
26 | 30 | public function checkValidationMessageForMembers($message); |
27 | 31 | |
28 | 32 | /** |
29 | 33 | * @param $name |
34 | + * @return void |
|
30 | 35 | */ |
31 | 36 | public function chooseMember($name); |
32 | 37 | |
@@ -44,11 +49,13 @@ discard block |
||
44 | 49 | |
45 | 50 | /** |
46 | 51 | * @param string $name |
52 | + * @return void |
|
47 | 53 | */ |
48 | 54 | public function nameIt($name); |
49 | 55 | |
50 | 56 | /** |
51 | 57 | * @param string $code |
58 | + * @return void |
|
52 | 59 | */ |
53 | 60 | public function specifyCode($code); |
54 | 61 | } |
@@ -21,6 +21,7 @@ discard block |
||
21 | 21 | { |
22 | 22 | /** |
23 | 23 | * @param string $name |
24 | + * @return void |
|
24 | 25 | */ |
25 | 26 | public function nameIt($name); |
26 | 27 | |
@@ -43,6 +44,7 @@ discard block |
||
43 | 44 | |
44 | 45 | /** |
45 | 46 | * @param ZoneMemberInterface $zoneMember |
47 | + * @return void |
|
46 | 48 | */ |
47 | 49 | public function removeMember(ZoneMemberInterface $zoneMember); |
48 | 50 | } |
@@ -23,12 +23,14 @@ |
||
23 | 23 | /** |
24 | 24 | * @throws UnsupportedDriverActionException |
25 | 25 | * @throws DriverException |
26 | + * @return void |
|
26 | 27 | */ |
27 | 28 | public function pay(); |
28 | 29 | |
29 | 30 | /** |
30 | 31 | * @throws UnsupportedDriverActionException |
31 | 32 | * @throws DriverException |
33 | + * @return void |
|
32 | 34 | */ |
33 | 35 | public function cancel(); |
34 | 36 | } |
@@ -243,7 +243,7 @@ |
||
243 | 243 | } |
244 | 244 | |
245 | 245 | /** |
246 | - * @param string|array $selector |
|
246 | + * @param string $selector |
|
247 | 247 | * @param SelectorsHandler $selectorsHandler |
248 | 248 | * |
249 | 249 | * @return string |