@@ -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,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 | |
@@ -71,7 +71,7 @@ |
||
| 71 | 71 | /** |
| 72 | 72 | * @param TaxonInterface $taxon |
| 73 | 73 | * |
| 74 | - * @return callable|null |
|
| 74 | + * @return null|\Closure |
|
| 75 | 75 | */ |
| 76 | 76 | private function getFilterTaxonOption(TaxonInterface $taxon) |
| 77 | 77 | { |
@@ -314,6 +314,7 @@ discard block |
||
| 314 | 314 | |
| 315 | 315 | /** |
| 316 | 316 | * @Given /^([^"]+) gives ("[^"]+%") discount on shipping to every order$/ |
| 317 | + * @param integer $discount |
|
| 317 | 318 | */ |
| 318 | 319 | public function itGivesPercentageDiscountOnShippingToEveryOrder(PromotionInterface $promotion, $discount) |
| 319 | 320 | { |
@@ -634,7 +635,7 @@ discard block |
||
| 634 | 635 | } |
| 635 | 636 | |
| 636 | 637 | /** |
| 637 | - * @param array $taxonCodes |
|
| 638 | + * @param string[] $taxonCodes |
|
| 638 | 639 | * |
| 639 | 640 | * @return array |
| 640 | 641 | */ |
@@ -644,7 +645,7 @@ discard block |
||
| 644 | 645 | } |
| 645 | 646 | |
| 646 | 647 | /** |
| 647 | - * @param array $productCodes |
|
| 648 | + * @param string[] $productCodes |
|
| 648 | 649 | * |
| 649 | 650 | * @return array |
| 650 | 651 | */ |
@@ -174,6 +174,8 @@ discard block |
||
| 174 | 174 | } |
| 175 | 175 | |
| 176 | 176 | /** |
| 177 | + * @param string $code |
|
| 178 | + * @param string $name |
|
| 177 | 179 | * @return ChannelInterface |
| 178 | 180 | */ |
| 179 | 181 | private function createChannel($code, $name) |
@@ -197,6 +199,7 @@ discard block |
||
| 197 | 199 | } |
| 198 | 200 | |
| 199 | 201 | /** |
| 202 | + * @param string $currencyCode |
|
| 200 | 203 | * @return CurrencyInterface |
| 201 | 204 | */ |
| 202 | 205 | private function provideCurrency($currencyCode = null) |
@@ -24,6 +24,7 @@ discard block |
||
| 24 | 24 | { |
| 25 | 25 | /** |
| 26 | 26 | * @throws ElementNotFoundException |
| 27 | + * @return void |
|
| 27 | 28 | */ |
| 28 | 29 | public function addToCart(); |
| 29 | 30 | |
@@ -31,6 +32,7 @@ discard block |
||
| 31 | 32 | * @param string $quantity |
| 32 | 33 | * |
| 33 | 34 | * @throws ElementNotFoundException |
| 35 | + * @return void |
|
| 34 | 36 | */ |
| 35 | 37 | public function addToCartWithQuantity($quantity); |
| 36 | 38 | |
@@ -38,6 +40,7 @@ discard block |
||
| 38 | 40 | * @param string $variant |
| 39 | 41 | * |
| 40 | 42 | * @throws ElementNotFoundException |
| 43 | + * @return void |
|
| 41 | 44 | */ |
| 42 | 45 | public function addToCartWithVariant($variant); |
| 43 | 46 | |
@@ -46,6 +49,7 @@ discard block |
||
| 46 | 49 | * @param string $optionValue |
| 47 | 50 | * |
| 48 | 51 | * @throws ElementNotFoundException |
| 52 | + * @return void |
|
| 49 | 53 | */ |
| 50 | 54 | public function addToCartWithOption(ProductOptionInterface $option, $optionValue); |
| 51 | 55 | |
@@ -56,6 +60,7 @@ discard block |
||
| 56 | 60 | |
| 57 | 61 | /** |
| 58 | 62 | * @param string $url |
| 63 | + * @return void |
|
| 59 | 64 | */ |
| 60 | 65 | public function visit($url); |
| 61 | 66 | |
@@ -67,7 +72,7 @@ discard block |
||
| 67 | 72 | public function getAttributeByName($attributeName); |
| 68 | 73 | |
| 69 | 74 | /** |
| 70 | - * @return array |
|
| 75 | + * @return \Behat\Mink\Element\NodeElement[] |
|
| 71 | 76 | */ |
| 72 | 77 | public function getAttributes(); |
| 73 | 78 | |
@@ -80,6 +85,7 @@ discard block |
||
| 80 | 85 | |
| 81 | 86 | /** |
| 82 | 87 | * @param int $timeout |
| 88 | + * @return void |
|
| 83 | 89 | */ |
| 84 | 90 | public function waitForValidationErrors($timeout); |
| 85 | 91 | |
@@ -123,11 +129,13 @@ discard block |
||
| 123 | 129 | /** |
| 124 | 130 | * @param string $optionName |
| 125 | 131 | * @param string $optionValue |
| 132 | + * @return void |
|
| 126 | 133 | */ |
| 127 | 134 | public function selectOption($optionName, $optionValue); |
| 128 | 135 | |
| 129 | 136 | /** |
| 130 | 137 | * @param string $variantName |
| 138 | + * @return void |
|
| 131 | 139 | */ |
| 132 | 140 | public function selectVariant($variantName); |
| 133 | 141 | |
@@ -93,7 +93,7 @@ discard block |
||
| 93 | 93 | } |
| 94 | 94 | |
| 95 | 95 | /** |
| 96 | - * @param $code |
|
| 96 | + * @param string $code |
|
| 97 | 97 | * |
| 98 | 98 | * @return null|string |
| 99 | 99 | */ |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | } |
| 104 | 104 | |
| 105 | 105 | /** |
| 106 | - * @return array |
|
| 106 | + * @return string[] |
|
| 107 | 107 | */ |
| 108 | 108 | private function getAvailableCountries() |
| 109 | 109 | { |
@@ -103,7 +103,6 @@ |
||
| 103 | 103 | |
| 104 | 104 | /** |
| 105 | 105 | * @param int $price |
| 106 | - * @param string $currencyCode |
|
| 107 | 106 | * |
| 108 | 107 | * @return float |
| 109 | 108 | */ |