@@ -37,6 +37,7 @@ discard block |
||
| 37 | 37 | |
| 38 | 38 | /** |
| 39 | 39 | * @param string $state |
| 40 | + * @return void |
|
| 40 | 41 | */ |
| 41 | 42 | public function setState($state); |
| 42 | 43 | |
@@ -47,6 +48,7 @@ discard block |
||
| 47 | 48 | |
| 48 | 49 | /** |
| 49 | 50 | * @param ShippingMethodInterface $method |
| 51 | + * @return void |
|
| 50 | 52 | */ |
| 51 | 53 | public function setMethod(ShippingMethodInterface $method = null); |
| 52 | 54 | |
@@ -57,11 +59,13 @@ discard block |
||
| 57 | 59 | |
| 58 | 60 | /** |
| 59 | 61 | * @param ShipmentUnitInterface $unit |
| 62 | + * @return void |
|
| 60 | 63 | */ |
| 61 | 64 | public function addUnit(ShipmentUnitInterface $unit); |
| 62 | 65 | |
| 63 | 66 | /** |
| 64 | 67 | * @param ShipmentUnitInterface $unit |
| 68 | + * @return void |
|
| 65 | 69 | */ |
| 66 | 70 | public function removeUnit(ShipmentUnitInterface $unit); |
| 67 | 71 | |
@@ -79,6 +83,7 @@ discard block |
||
| 79 | 83 | |
| 80 | 84 | /** |
| 81 | 85 | * @param string $tracking |
| 86 | + * @return void |
|
| 82 | 87 | */ |
| 83 | 88 | public function setTracking($tracking); |
| 84 | 89 | |
@@ -32,6 +32,7 @@ discard block |
||
| 32 | 32 | |
| 33 | 33 | /** |
| 34 | 34 | * @param string $name |
| 35 | + * @return void |
|
| 35 | 36 | */ |
| 36 | 37 | public function setName($name); |
| 37 | 38 | |
@@ -42,6 +43,7 @@ discard block |
||
| 42 | 43 | |
| 43 | 44 | /** |
| 44 | 45 | * @param string $description |
| 46 | + * @return void |
|
| 45 | 47 | */ |
| 46 | 48 | public function setDescription($description); |
| 47 | 49 | } |
@@ -27,6 +27,7 @@ discard block |
||
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | 29 | * @param null|TaxCategoryInterface $category |
| 30 | + * @return void |
|
| 30 | 31 | */ |
| 31 | 32 | public function setCategory(TaxCategoryInterface $category = null); |
| 32 | 33 | |
@@ -37,6 +38,7 @@ discard block |
||
| 37 | 38 | |
| 38 | 39 | /** |
| 39 | 40 | * @param string $name |
| 41 | + * @return void |
|
| 40 | 42 | */ |
| 41 | 43 | public function setName($name); |
| 42 | 44 | |
@@ -52,6 +54,7 @@ discard block |
||
| 52 | 54 | |
| 53 | 55 | /** |
| 54 | 56 | * @param float $amount |
| 57 | + * @return void |
|
| 55 | 58 | */ |
| 56 | 59 | public function setAmount($amount); |
| 57 | 60 | |
@@ -62,6 +65,7 @@ discard block |
||
| 62 | 65 | |
| 63 | 66 | /** |
| 64 | 67 | * @param bool $includedInPrice |
| 68 | + * @return void |
|
| 65 | 69 | */ |
| 66 | 70 | public function setIncludedInPrice($includedInPrice); |
| 67 | 71 | |
@@ -72,6 +76,7 @@ discard block |
||
| 72 | 76 | |
| 73 | 77 | /** |
| 74 | 78 | * @param string $calculator |
| 79 | + * @return void |
|
| 75 | 80 | */ |
| 76 | 81 | public function setCalculator($calculator); |
| 77 | 82 | |
@@ -16,5 +16,10 @@ |
||
| 16 | 16 | */ |
| 17 | 17 | interface CanonicalizerInterface |
| 18 | 18 | { |
| 19 | + /** |
|
| 20 | + * @param string $string |
|
| 21 | + * |
|
| 22 | + * @return string |
|
| 23 | + */ |
|
| 19 | 24 | public function canonicalize($string); |
| 20 | 25 | } |
@@ -23,6 +23,7 @@ discard block |
||
| 23 | 23 | |
| 24 | 24 | /** |
| 25 | 25 | * @param string $plainPassword |
| 26 | + * @return void |
|
| 26 | 27 | */ |
| 27 | 28 | public function setPlainPassword($plainPassword); |
| 28 | 29 | |
@@ -38,6 +39,7 @@ discard block |
||
| 38 | 39 | |
| 39 | 40 | /** |
| 40 | 41 | * @param string $encodedPassword |
| 42 | + * @return void |
|
| 41 | 43 | */ |
| 42 | 44 | public function setPassword($encodedPassword); |
| 43 | 45 | |
@@ -55,6 +57,7 @@ discard block |
||
| 55 | 57 | * |
| 56 | 58 | * This is important if, at any given point, sensitive information like |
| 57 | 59 | * the plain-text password is stored on this object. |
| 60 | + * @return void |
|
| 58 | 61 | */ |
| 59 | 62 | public function eraseCredentials(); |
| 60 | 63 | } |
@@ -23,6 +23,7 @@ |
||
| 23 | 23 | |
| 24 | 24 | /** |
| 25 | 25 | * @param UserInterface $user |
| 26 | + * @return void |
|
| 26 | 27 | */ |
| 27 | 28 | public function setUser(UserInterface $user = null); |
| 28 | 29 | } |
@@ -18,5 +18,8 @@ |
||
| 18 | 18 | */ |
| 19 | 19 | interface PasswordUpdaterInterface |
| 20 | 20 | { |
| 21 | + /** |
|
| 22 | + * @return void |
|
| 23 | + */ |
|
| 21 | 24 | public function updatePassword(CredentialsHolderInterface $user); |
| 22 | 25 | } |
@@ -18,7 +18,14 @@ discard block |
||
| 18 | 18 | */ |
| 19 | 19 | interface UpdatePageInterface extends BaseUpdatePageInterface |
| 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 | /** |
@@ -28,6 +35,7 @@ discard block |
||
| 28 | 35 | |
| 29 | 36 | /** |
| 30 | 37 | * @param string $firstName |
| 38 | + * @return void |
|
| 31 | 39 | */ |
| 32 | 40 | public function changeFirstName($firstName); |
| 33 | 41 | |
@@ -38,6 +46,7 @@ discard block |
||
| 38 | 46 | |
| 39 | 47 | /** |
| 40 | 48 | * @param string $lastName |
| 49 | + * @return void |
|
| 41 | 50 | */ |
| 42 | 51 | public function changeLastName($lastName); |
| 43 | 52 | |
@@ -48,11 +57,13 @@ discard block |
||
| 48 | 57 | |
| 49 | 58 | /** |
| 50 | 59 | * @param string $email |
| 60 | + * @return void |
|
| 51 | 61 | */ |
| 52 | 62 | public function changeEmail($email); |
| 53 | 63 | |
| 54 | 64 | /** |
| 55 | 65 | * @param string $password |
| 66 | + * @return void |
|
| 56 | 67 | */ |
| 57 | 68 | public function changePassword($password); |
| 58 | 69 | |
@@ -61,6 +72,9 @@ discard block |
||
| 61 | 72 | */ |
| 62 | 73 | public function getPassword(); |
| 63 | 74 | |
| 75 | + /** |
|
| 76 | + * @return void |
|
| 77 | + */ |
|
| 64 | 78 | public function subscribeToTheNewsletter(); |
| 65 | 79 | |
| 66 | 80 | /** |
@@ -21,19 +21,25 @@ discard block |
||
| 21 | 21 | { |
| 22 | 22 | /** |
| 23 | 23 | * @param string $firstName |
| 24 | + * @return void |
|
| 24 | 25 | */ |
| 25 | 26 | public function specifyFirstName($firstName); |
| 26 | 27 | |
| 27 | 28 | /** |
| 28 | 29 | * @param string $lastName |
| 30 | + * @return void |
|
| 29 | 31 | */ |
| 30 | 32 | public function specifyLastName($lastName); |
| 31 | 33 | |
| 32 | 34 | /** |
| 33 | 35 | * @param string $email |
| 36 | + * @return void |
|
| 34 | 37 | */ |
| 35 | 38 | public function specifyEmail($email); |
| 36 | 39 | |
| 40 | + /** |
|
| 41 | + * @return void |
|
| 42 | + */ |
|
| 37 | 43 | public function saveChanges(); |
| 38 | 44 | |
| 39 | 45 | /** |
@@ -46,6 +52,9 @@ discard block |
||
| 46 | 52 | */ |
| 47 | 53 | public function checkValidationMessageFor($element, $message); |
| 48 | 54 | |
| 55 | + /** |
|
| 56 | + * @return void |
|
| 57 | + */ |
|
| 49 | 58 | public function subscribeToTheNewsletter(); |
| 50 | 59 | |
| 51 | 60 | /** |