@@ -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 | /** |
@@ -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 | } |
@@ -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 | } |
@@ -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 | } |
@@ -18,34 +18,46 @@ |
||
| 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 $description |
| 42 | 52 | * @param string $languageCode |
| 53 | + * @return void |
|
| 43 | 54 | */ |
| 44 | 55 | public function describeIt($description, $languageCode); |
| 45 | 56 | |
| 46 | 57 | /** |
| 47 | 58 | * @param string $instructions |
| 48 | 59 | * @param string $languageCode |
| 60 | + * @return void |
|
| 49 | 61 | */ |
| 50 | 62 | public function setInstructions($instructions, $languageCode); |
| 51 | 63 | |
@@ -36,11 +36,13 @@ discard block |
||
| 36 | 36 | |
| 37 | 37 | /** |
| 38 | 38 | * @param string $locale |
| 39 | + * @return void |
|
| 39 | 40 | */ |
| 40 | 41 | public function setCurrentLocale($locale); |
| 41 | 42 | |
| 42 | 43 | /** |
| 43 | 44 | * @param string $locale |
| 45 | + * @return void |
|
| 44 | 46 | */ |
| 45 | 47 | public function setFallbackLocale($locale); |
| 46 | 48 | |
@@ -51,11 +53,13 @@ discard block |
||
| 51 | 53 | |
| 52 | 54 | /** |
| 53 | 55 | * @param TranslationInterface $translation |
| 56 | + * @return void |
|
| 54 | 57 | */ |
| 55 | 58 | public function addTranslation(TranslationInterface $translation); |
| 56 | 59 | |
| 57 | 60 | /** |
| 58 | 61 | * @param TranslationInterface $translation |
| 62 | + * @return void |
|
| 59 | 63 | */ |
| 60 | 64 | public function removeTranslation(TranslationInterface $translation); |
| 61 | 65 | } |
@@ -32,16 +32,19 @@ discard block |
||
| 32 | 32 | |
| 33 | 33 | /** |
| 34 | 34 | * @param Collection $variants |
| 35 | + * @return void |
|
| 35 | 36 | */ |
| 36 | 37 | public function setVariants(Collection $variants); |
| 37 | 38 | |
| 38 | 39 | /** |
| 39 | 40 | * @param VariantInterface $variant |
| 41 | + * @return void |
|
| 40 | 42 | */ |
| 41 | 43 | public function addVariant(VariantInterface $variant); |
| 42 | 44 | |
| 43 | 45 | /** |
| 44 | 46 | * @param VariantInterface $variant |
| 47 | + * @return void |
|
| 45 | 48 | */ |
| 46 | 49 | public function removeVariant(VariantInterface $variant); |
| 47 | 50 | |
@@ -64,16 +67,19 @@ discard block |
||
| 64 | 67 | |
| 65 | 68 | /** |
| 66 | 69 | * @param Collection $options |
| 70 | + * @return void |
|
| 67 | 71 | */ |
| 68 | 72 | public function setOptions(Collection $options); |
| 69 | 73 | |
| 70 | 74 | /** |
| 71 | 75 | * @param OptionInterface $option |
| 76 | + * @return void |
|
| 72 | 77 | */ |
| 73 | 78 | public function addOption(OptionInterface $option); |
| 74 | 79 | |
| 75 | 80 | /** |
| 76 | 81 | * @param OptionInterface $option |
| 82 | + * @return void |
|
| 77 | 83 | */ |
| 78 | 84 | public function removeOption(OptionInterface $option); |
| 79 | 85 | |
@@ -27,6 +27,7 @@ discard block |
||
| 27 | 27 | /** |
| 28 | 28 | * @param string $name |
| 29 | 29 | * @param string $localeCode |
| 30 | + * @return void |
|
| 30 | 31 | */ |
| 31 | 32 | public function nameItIn($name, $localeCode); |
| 32 | 33 | |
@@ -49,6 +50,7 @@ discard block |
||
| 49 | 50 | |
| 50 | 51 | /** |
| 51 | 52 | * @param TaxonInterface $taxon |
| 53 | + * @return void |
|
| 52 | 54 | */ |
| 53 | 55 | public function selectMainTaxon(TaxonInterface $taxon); |
| 54 | 56 | |
@@ -62,20 +64,26 @@ discard block |
||
| 62 | 64 | /** |
| 63 | 65 | * @param string $code |
| 64 | 66 | * @param string $path |
| 67 | + * @return void |
|
| 65 | 68 | */ |
| 66 | 69 | public function attachImageWithCode($code, $path); |
| 67 | 70 | |
| 68 | 71 | /** |
| 69 | 72 | * @param string $code |
| 70 | 73 | * @param string $path |
| 74 | + * @return void |
|
| 71 | 75 | */ |
| 72 | 76 | public function changeImageWithCode($code, $path); |
| 73 | 77 | |
| 74 | 78 | /** |
| 75 | 79 | * @param string $code |
| 80 | + * @return void |
|
| 76 | 81 | */ |
| 77 | 82 | public function removeImageWithCode($code); |
| 78 | 83 | |
| 84 | + /** |
|
| 85 | + * @return void |
|
| 86 | + */ |
|
| 79 | 87 | public function removeFirstImage(); |
| 80 | 88 | |
| 81 | 89 | /** |
@@ -27,12 +27,14 @@ discard block |
||
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | 29 | * @param int $price |
| 30 | + * @return void |
|
| 30 | 31 | */ |
| 31 | 32 | public function specifyPrice($price); |
| 32 | 33 | |
| 33 | 34 | /** |
| 34 | 35 | * @param string $name |
| 35 | 36 | * @param string $localeCode |
| 37 | + * @return void |
|
| 36 | 38 | */ |
| 37 | 39 | public function nameItIn($name, $localeCode); |
| 38 | 40 | |
@@ -59,11 +61,18 @@ discard block |
||
| 59 | 61 | |
| 60 | 62 | /** |
| 61 | 63 | * @param TaxonInterface $taxon |
| 64 | + * @return void |
|
| 62 | 65 | */ |
| 63 | 66 | public function selectMainTaxon(TaxonInterface $taxon); |
| 64 | 67 | |
| 68 | + /** |
|
| 69 | + * @return void |
|
| 70 | + */ |
|
| 65 | 71 | public function disableTracking(); |
| 66 | 72 | |
| 73 | + /** |
|
| 74 | + * @return void |
|
| 75 | + */ |
|
| 67 | 76 | public function enableTracking(); |
| 68 | 77 | |
| 69 | 78 | /** |
@@ -81,20 +90,26 @@ discard block |
||
| 81 | 90 | /** |
| 82 | 91 | * @param string $code |
| 83 | 92 | * @param string $path |
| 93 | + * @return void |
|
| 84 | 94 | */ |
| 85 | 95 | public function attachImageWithCode($code, $path); |
| 86 | 96 | |
| 87 | 97 | /** |
| 88 | 98 | * @param string $code |
| 89 | 99 | * @param string $path |
| 100 | + * @return void |
|
| 90 | 101 | */ |
| 91 | 102 | public function changeImageWithCode($code, $path); |
| 92 | 103 | |
| 93 | 104 | /** |
| 94 | 105 | * @param string $code |
| 106 | + * @return void |
|
| 95 | 107 | */ |
| 96 | 108 | public function removeImageWithCode($code); |
| 97 | 109 | |
| 110 | + /** |
|
| 111 | + * @return void |
|
| 112 | + */ |
|
| 98 | 113 | public function removeFirstImage(); |
| 99 | 114 | |
| 100 | 115 | /** |