@@ -39,6 +39,7 @@ discard block |
||
| 39 | 39 | * Sets all option values. |
| 40 | 40 | * |
| 41 | 41 | * @param Collection $optionValues |
| 42 | + * @return void |
|
| 42 | 43 | */ |
| 43 | 44 | public function setValues(Collection $optionValues); |
| 44 | 45 | |
@@ -46,6 +47,7 @@ discard block |
||
| 46 | 47 | * Adds option value. |
| 47 | 48 | * |
| 48 | 49 | * @param OptionValueInterface $optionValue |
| 50 | + * @return void |
|
| 49 | 51 | */ |
| 50 | 52 | public function addValue(OptionValueInterface $optionValue); |
| 51 | 53 | |
@@ -53,6 +55,7 @@ discard block |
||
| 53 | 55 | * Removes option value. |
| 54 | 56 | * |
| 55 | 57 | * @param OptionValueInterface $optionValue |
| 58 | + * @return void |
|
| 56 | 59 | */ |
| 57 | 60 | public function removeValue(OptionValueInterface $optionValue); |
| 58 | 61 | |
@@ -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 | } |
@@ -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 | } |
@@ -60,7 +60,7 @@ |
||
| 60 | 60 | { |
| 61 | 61 | /** @var ChoiceView $choice */ |
| 62 | 62 | foreach ($view->vars['choices'] as $choice) { |
| 63 | - $choice->label = str_repeat('— ', $choice->data->getLevel()).$choice->label; |
|
| 63 | + $choice->label = str_repeat('— ', $choice->data->getLevel()) . $choice->label; |
|
| 64 | 64 | } |
| 65 | 65 | } |
| 66 | 66 | |
@@ -21,6 +21,7 @@ discard block |
||
| 21 | 21 | { |
| 22 | 22 | /** |
| 23 | 23 | * @throws \RuntimeException |
| 24 | + * @return void |
|
| 24 | 25 | */ |
| 25 | 26 | public function chooseDifferentBillingAddress(); |
| 26 | 27 | |
@@ -39,21 +40,25 @@ discard block |
||
| 39 | 40 | |
| 40 | 41 | /** |
| 41 | 42 | * @param AddressInterface $billingAddress |
| 43 | + * @return void |
|
| 42 | 44 | */ |
| 43 | 45 | public function specifyBillingAddress(AddressInterface $billingAddress); |
| 44 | 46 | |
| 45 | 47 | /** |
| 46 | 48 | * @param string $province |
| 49 | + * @return void |
|
| 47 | 50 | */ |
| 48 | 51 | public function selectBillingAddressProvince($province); |
| 49 | 52 | |
| 50 | 53 | /** |
| 51 | 54 | * @param AddressInterface $shippingAddress |
| 55 | + * @return void |
|
| 52 | 56 | */ |
| 53 | 57 | public function specifyShippingAddress(AddressInterface $shippingAddress); |
| 54 | 58 | |
| 55 | 59 | /** |
| 56 | 60 | * @param string $province |
| 61 | + * @return void |
|
| 57 | 62 | */ |
| 58 | 63 | public function selectShippingAddressProvince($province); |
| 59 | 64 | |
@@ -62,15 +67,20 @@ discard block |
||
| 62 | 67 | */ |
| 63 | 68 | public function canSignIn(); |
| 64 | 69 | |
| 70 | + /** |
|
| 71 | + * @return void |
|
| 72 | + */ |
|
| 65 | 73 | public function signIn(); |
| 66 | 74 | |
| 67 | 75 | /** |
| 68 | 76 | * @param string $email |
| 77 | + * @return void |
|
| 69 | 78 | */ |
| 70 | 79 | public function specifyEmail($email); |
| 71 | 80 | |
| 72 | 81 | /** |
| 73 | 82 | * @param string $password |
| 83 | + * @return void |
|
| 74 | 84 | */ |
| 75 | 85 | public function specifyPassword($password); |
| 76 | 86 | |
@@ -86,17 +96,25 @@ discard block |
||
| 86 | 96 | */ |
| 87 | 97 | public function getShippingAddressCountry(); |
| 88 | 98 | |
| 99 | + /** |
|
| 100 | + * @return void |
|
| 101 | + */ |
|
| 89 | 102 | public function nextStep(); |
| 90 | 103 | |
| 104 | + /** |
|
| 105 | + * @return void |
|
| 106 | + */ |
|
| 91 | 107 | public function backToStore(); |
| 92 | 108 | |
| 93 | 109 | /** |
| 94 | 110 | * @param string $provinceName |
| 111 | + * @return void |
|
| 95 | 112 | */ |
| 96 | 113 | public function specifyBillingAddressProvince($provinceName); |
| 97 | 114 | |
| 98 | 115 | /** |
| 99 | 116 | * @param string $provinceName |
| 117 | + * @return void |
|
| 100 | 118 | */ |
| 101 | 119 | public function specifyShippingAddressProvince($provinceName); |
| 102 | 120 | |
@@ -112,11 +130,13 @@ discard block |
||
| 112 | 130 | |
| 113 | 131 | /** |
| 114 | 132 | * @param AddressInterface $address |
| 133 | + * @return void |
|
| 115 | 134 | */ |
| 116 | 135 | public function selectShippingAddressFromAddressBook(AddressInterface $address); |
| 117 | 136 | |
| 118 | 137 | /** |
| 119 | 138 | * @param AddressInterface $address |
| 139 | + * @return void |
|
| 120 | 140 | */ |
| 121 | 141 | public function selectBillingAddressFromAddressBook(AddressInterface $address); |
| 122 | 142 | |
@@ -271,6 +271,6 @@ |
||
| 271 | 271 | */ |
| 272 | 272 | private function generateCodeFromNameAndZone($shippingMethodName, $zoneCode = null) |
| 273 | 273 | { |
| 274 | - return StringInflector::nameToLowercaseCode($shippingMethodName).'_'.StringInflector::nameToLowercaseCode($zoneCode); |
|
| 274 | + return StringInflector::nameToLowercaseCode($shippingMethodName) . '_' . StringInflector::nameToLowercaseCode($zoneCode); |
|
| 275 | 275 | } |
| 276 | 276 | } |
@@ -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 | |
@@ -22,6 +22,7 @@ discard block |
||
| 22 | 22 | { |
| 23 | 23 | /** |
| 24 | 24 | * @param string $customerName |
| 25 | + * @return boolean |
|
| 25 | 26 | */ |
| 26 | 27 | public function hasCustomer($customerName); |
| 27 | 28 | |
@@ -56,6 +57,7 @@ discard block |
||
| 56 | 57 | |
| 57 | 58 | /** |
| 58 | 59 | * @param string $code |
| 60 | + * @return void |
|
| 59 | 61 | */ |
| 60 | 62 | public function specifyTrackingCode($code); |
| 61 | 63 | |
@@ -68,6 +70,7 @@ discard block |
||
| 68 | 70 | |
| 69 | 71 | /** |
| 70 | 72 | * @param OrderInterface $order |
| 73 | + * @return void |
|
| 71 | 74 | */ |
| 72 | 75 | public function shipOrder(OrderInterface $order); |
| 73 | 76 | |
@@ -87,11 +90,13 @@ discard block |
||
| 87 | 90 | |
| 88 | 91 | /** |
| 89 | 92 | * @param OrderInterface $order |
| 93 | + * @return void |
|
| 90 | 94 | */ |
| 91 | 95 | public function completeOrderLastPayment(OrderInterface $order); |
| 92 | 96 | |
| 93 | 97 | /** |
| 94 | 98 | * @param OrderInterface $order |
| 99 | + * @return void |
|
| 95 | 100 | */ |
| 96 | 101 | public function refundOrderLastPayment(OrderInterface $order); |
| 97 | 102 | |
@@ -234,8 +239,14 @@ discard block |
||
| 234 | 239 | */ |
| 235 | 240 | public function getPaymentState(); |
| 236 | 241 | |
| 242 | + /** |
|
| 243 | + * @return void |
|
| 244 | + */ |
|
| 237 | 245 | public function cancelOrder(); |
| 238 | 246 | |
| 247 | + /** |
|
| 248 | + * @return void |
|
| 249 | + */ |
|
| 239 | 250 | public function deleteOrder(); |
| 240 | 251 | |
| 241 | 252 | /** |
@@ -63,12 +63,14 @@ discard block |
||
| 63 | 63 | |
| 64 | 64 | /** |
| 65 | 65 | * @param string $productName |
| 66 | + * @return void |
|
| 66 | 67 | */ |
| 67 | 68 | public function removeProduct($productName); |
| 68 | 69 | |
| 69 | 70 | /** |
| 70 | 71 | * @param string $productName |
| 71 | 72 | * @param int $quantity |
| 73 | + * @return void |
|
| 72 | 74 | */ |
| 73 | 75 | public function changeQuantity($productName, $quantity); |
| 74 | 76 | |
@@ -112,5 +114,8 @@ discard block |
||
| 112 | 114 | */ |
| 113 | 115 | public function getQuantity($productName); |
| 114 | 116 | |
| 117 | + /** |
|
| 118 | + * @return void |
|
| 119 | + */ |
|
| 115 | 120 | public function clearCart(); |
| 116 | 121 | } |