@@ -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 |
@@ -20,11 +20,13 @@ discard block |
||
20 | 20 | * @param array $urlParameters |
21 | 21 | * |
22 | 22 | * @throws UnexpectedPageException If page is not opened successfully |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function open(array $urlParameters = []); |
25 | 26 | |
26 | 27 | /** |
27 | 28 | * @param array $urlParameters |
29 | + * @return void |
|
28 | 30 | */ |
29 | 31 | public function tryToOpen(array $urlParameters = []); |
30 | 32 | |
@@ -32,6 +34,7 @@ discard block |
||
32 | 34 | * @param array $urlParameters |
33 | 35 | * |
34 | 36 | * @throws UnexpectedPageException |
37 | + * @return void |
|
35 | 38 | */ |
36 | 39 | public function verify(array $urlParameters = []); |
37 | 40 |
@@ -21,16 +21,19 @@ |
||
21 | 21 | { |
22 | 22 | /** |
23 | 23 | * @param string $password |
24 | + * @return void |
|
24 | 25 | */ |
25 | 26 | public function specifyCurrentPassword($password); |
26 | 27 | |
27 | 28 | /** |
28 | 29 | * @param string $password |
30 | + * @return void |
|
29 | 31 | */ |
30 | 32 | public function specifyNewPassword($password); |
31 | 33 | |
32 | 34 | /** |
33 | 35 | * @param string $password |
36 | + * @return void |
|
34 | 37 | */ |
35 | 38 | public function specifyConfirmationPassword($password); |
36 | 39 |
@@ -26,10 +26,14 @@ |
||
26 | 26 | */ |
27 | 27 | public function checkValidationMessageFor($element, $message); |
28 | 28 | |
29 | + /** |
|
30 | + * @return void |
|
31 | + */ |
|
29 | 32 | public function reset(); |
30 | 33 | |
31 | 34 | /** |
32 | 35 | * @param string $email |
36 | + * @return void |
|
33 | 37 | */ |
34 | 38 | public function specifyEmail($email); |
35 | 39 | } |
@@ -91,8 +91,8 @@ |
||
91 | 91 | } |
92 | 92 | |
93 | 93 | /** |
94 | - * @param array $columns |
|
95 | - * @param array $fields |
|
94 | + * @param NodeElement[] $columns |
|
95 | + * @param string[] $fields |
|
96 | 96 | * |
97 | 97 | * @return bool |
98 | 98 | */ |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | |
86 | 86 | /** |
87 | 87 | * @param string $source |
88 | - * @param mixed $content |
|
88 | + * @param string $content |
|
89 | 89 | * |
90 | 90 | * @throws \RuntimeException |
91 | 91 | */ |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | |
99 | 99 | /** |
100 | 100 | * @param string $source |
101 | - * @param mixed $content |
|
101 | + * @param string $content |
|
102 | 102 | * |
103 | 103 | * @throws \RuntimeException |
104 | 104 | */ |
@@ -20,6 +20,7 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param ChannelInterface $channel |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function setChannel(ChannelInterface $channel); |
25 | 26 | } |
@@ -19,6 +19,7 @@ |
||
19 | 19 | /** |
20 | 20 | * @param string $name |
21 | 21 | * @param string $value |
22 | + * @return void |
|
22 | 23 | */ |
23 | 24 | public function setCookie($name, $value); |
24 | 25 | } |
@@ -151,6 +151,9 @@ |
||
151 | 151 | $this->validate($address, $constraint); |
152 | 152 | } |
153 | 153 | |
154 | + /** |
|
155 | + * @param string $propertyPath |
|
156 | + */ |
|
154 | 157 | private function createViolation($propertyPath) |
155 | 158 | { |
156 | 159 | return new ConstraintViolation('message', 'template', [], 'root', $propertyPath, 'invalidValue'); |