@@ -38,6 +38,7 @@ discard block |
||
38 | 38 | |
39 | 39 | /** |
40 | 40 | * @param string $email |
41 | + * @return void |
|
41 | 42 | */ |
42 | 43 | public function setEmail($email); |
43 | 44 | |
@@ -50,6 +51,7 @@ discard block |
||
50 | 51 | |
51 | 52 | /** |
52 | 53 | * @param string $emailCanonical |
54 | + * @return void |
|
53 | 55 | */ |
54 | 56 | public function setEmailCanonical($emailCanonical); |
55 | 57 | |
@@ -67,6 +69,7 @@ discard block |
||
67 | 69 | |
68 | 70 | /** |
69 | 71 | * @param string $firstName |
72 | + * @return void |
|
70 | 73 | */ |
71 | 74 | public function setFirstName($firstName); |
72 | 75 | |
@@ -77,6 +80,7 @@ discard block |
||
77 | 80 | |
78 | 81 | /** |
79 | 82 | * @param string $lastName |
83 | + * @return void |
|
80 | 84 | */ |
81 | 85 | public function setLastName($lastName); |
82 | 86 | |
@@ -87,6 +91,7 @@ discard block |
||
87 | 91 | |
88 | 92 | /** |
89 | 93 | * @param \DateTime $birthday |
94 | + * @return void |
|
90 | 95 | */ |
91 | 96 | public function setBirthday(\DateTime $birthday = null); |
92 | 97 | |
@@ -99,6 +104,7 @@ discard block |
||
99 | 104 | * You should use interface constants for that. |
100 | 105 | * |
101 | 106 | * @param string $gender |
107 | + * @return void |
|
102 | 108 | */ |
103 | 109 | public function setGender($gender); |
104 | 110 | |
@@ -119,6 +125,7 @@ discard block |
||
119 | 125 | |
120 | 126 | /** |
121 | 127 | * @param string $phoneNumber |
128 | + * @return void |
|
122 | 129 | */ |
123 | 130 | public function setPhoneNumber($phoneNumber); |
124 | 131 | } |
@@ -20,8 +20,12 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param string $shippingMethod |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function selectShippingMethod($shippingMethod); |
25 | 26 | |
27 | + /** |
|
28 | + * @return void |
|
29 | + */ |
|
26 | 30 | public function continueCheckout(); |
27 | 31 | } |
@@ -27,6 +27,7 @@ |
||
27 | 27 | |
28 | 28 | /** |
29 | 29 | * @param string $value |
30 | + * @return void |
|
30 | 31 | */ |
31 | 32 | public function setValue($value); |
32 | 33 | } |
@@ -27,6 +27,7 @@ discard block |
||
27 | 27 | |
28 | 28 | /** |
29 | 29 | * @param OptionInterface $option |
30 | + * @return void |
|
30 | 31 | */ |
31 | 32 | public function setOption(OptionInterface $option = null); |
32 | 33 | |
@@ -41,6 +42,7 @@ discard block |
||
41 | 42 | * Set internal value. |
42 | 43 | * |
43 | 44 | * @param string $value |
45 | + * @return void |
|
44 | 46 | */ |
45 | 47 | public function setValue($value); |
46 | 48 |
@@ -20,24 +20,31 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param string $title |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function titleReview($title); |
25 | 26 | |
26 | 27 | /** |
27 | 28 | * @param string $comment |
29 | + * @return void |
|
28 | 30 | */ |
29 | 31 | public function setComment($comment); |
30 | 32 | |
31 | 33 | /** |
32 | 34 | * @param string $author |
35 | + * @return void |
|
33 | 36 | */ |
34 | 37 | public function setAuthor($author); |
35 | 38 | |
36 | 39 | /** |
37 | 40 | * @param int $rate |
41 | + * @return void |
|
38 | 42 | */ |
39 | 43 | public function rateReview($rate); |
40 | 44 | |
45 | + /** |
|
46 | + * @return void |
|
47 | + */ |
|
41 | 48 | public function submitReview(); |
42 | 49 | |
43 | 50 | /** |
@@ -28,6 +28,7 @@ discard block |
||
28 | 28 | |
29 | 29 | /** |
30 | 30 | * @param string $code |
31 | + * @return void |
|
31 | 32 | */ |
32 | 33 | public function setCode($code); |
33 | 34 | |
@@ -38,11 +39,18 @@ discard block |
||
38 | 39 | |
39 | 40 | /** |
40 | 41 | * @param bool $enabled |
42 | + * @return void |
|
41 | 43 | */ |
42 | 44 | public function setEnabled($enabled); |
43 | 45 | |
46 | + /** |
|
47 | + * @return void |
|
48 | + */ |
|
44 | 49 | public function enable(); |
45 | 50 | |
51 | + /** |
|
52 | + * @return void |
|
53 | + */ |
|
46 | 54 | public function disable(); |
47 | 55 | |
48 | 56 | /** |
@@ -52,6 +60,7 @@ discard block |
||
52 | 60 | |
53 | 61 | /** |
54 | 62 | * @param string $subject |
63 | + * @return void |
|
55 | 64 | */ |
56 | 65 | public function setSubject($subject); |
57 | 66 | |
@@ -62,6 +71,7 @@ discard block |
||
62 | 71 | |
63 | 72 | /** |
64 | 73 | * @param string $content |
74 | + * @return void |
|
65 | 75 | */ |
66 | 76 | public function setContent($content); |
67 | 77 | |
@@ -72,6 +82,7 @@ discard block |
||
72 | 82 | |
73 | 83 | /** |
74 | 84 | * @param string $template |
85 | + * @return void |
|
75 | 86 | */ |
76 | 87 | public function setTemplate($template); |
77 | 88 | |
@@ -82,6 +93,7 @@ discard block |
||
82 | 93 | |
83 | 94 | /** |
84 | 95 | * @param string $senderName |
96 | + * @return void |
|
85 | 97 | */ |
86 | 98 | public function setSenderName($senderName); |
87 | 99 | |
@@ -92,6 +104,7 @@ discard block |
||
92 | 104 | |
93 | 105 | /** |
94 | 106 | * @param string $senderAddress |
107 | + * @return void |
|
95 | 108 | */ |
96 | 109 | public function setSenderAddress($senderAddress); |
97 | 110 | } |
@@ -20,6 +20,7 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * {@inheritdoc} |
23 | + * @param string $path |
|
23 | 24 | */ |
24 | 25 | public function get($path, $default = null, $deep = false) |
25 | 26 | { |
@@ -18,22 +18,28 @@ |
||
18 | 18 | */ |
19 | 19 | interface GeneratePageInterface extends SymfonyPageInterface |
20 | 20 | { |
21 | + /** |
|
22 | + * @return void |
|
23 | + */ |
|
21 | 24 | public function generate(); |
22 | 25 | |
23 | 26 | /** |
24 | 27 | * @param int $nth |
25 | 28 | * @param int $price |
29 | + * @return void |
|
26 | 30 | */ |
27 | 31 | public function specifyPrice($nth, $price); |
28 | 32 | |
29 | 33 | /** |
30 | 34 | * @param int $nth |
31 | 35 | * @param string $code |
36 | + * @return void |
|
32 | 37 | */ |
33 | 38 | public function nameCode($nth, $code); |
34 | 39 | |
35 | 40 | /** |
36 | 41 | * @param int $nth |
42 | + * @return void |
|
37 | 43 | */ |
38 | 44 | public function removeVariant($nth); |
39 | 45 |
@@ -18,39 +18,52 @@ |
||
18 | 18 | */ |
19 | 19 | interface CreatePageInterface extends BaseCreatePageInterface |
20 | 20 | { |
21 | + /** |
|
22 | + * @return void |
|
23 | + */ |
|
21 | 24 | public function enable(); |
25 | + |
|
26 | + /** |
|
27 | + * @return void |
|
28 | + */ |
|
22 | 29 | public function disable(); |
23 | 30 | |
24 | 31 | /** |
25 | 32 | * @param string $name |
26 | 33 | * @param string $languageCode |
34 | + * @return void |
|
27 | 35 | */ |
28 | 36 | public function nameIt($name, $languageCode); |
29 | 37 | |
30 | 38 | /** |
31 | 39 | * @param string $code |
40 | + * @return void |
|
32 | 41 | */ |
33 | 42 | public function specifyCode($code); |
34 | 43 | |
35 | 44 | /** |
36 | 45 | * @param string $gateway |
46 | + * @return void |
|
37 | 47 | */ |
38 | 48 | public function chooseGateway($gateway); |
39 | 49 | |
40 | 50 | /** |
41 | 51 | * @param string $channelName |
52 | + * @return void |
|
42 | 53 | */ |
43 | 54 | public function checkChannel($channelName); |
44 | 55 | |
45 | 56 | /** |
46 | 57 | * @param string $description |
47 | 58 | * @param string $languageCode |
59 | + * @return void |
|
48 | 60 | */ |
49 | 61 | public function describeIt($description, $languageCode); |
50 | 62 | |
51 | 63 | /** |
52 | 64 | * @param string $instructions |
53 | 65 | * @param string $languageCode |
66 | + * @return void |
|
54 | 67 | */ |
55 | 68 | public function setInstructions($instructions, $languageCode); |
56 | 69 |