@@ -35,6 +35,7 @@ discard block |
||
35 | 35 | |
36 | 36 | /** |
37 | 37 | * @param float $weight |
38 | + * @return void |
|
38 | 39 | */ |
39 | 40 | public function setWeight($weight); |
40 | 41 | |
@@ -45,6 +46,7 @@ discard block |
||
45 | 46 | |
46 | 47 | /** |
47 | 48 | * @param float $width |
49 | + * @return void |
|
48 | 50 | */ |
49 | 51 | public function setWidth($width); |
50 | 52 | |
@@ -55,6 +57,7 @@ discard block |
||
55 | 57 | |
56 | 58 | /** |
57 | 59 | * @param float $height |
60 | + * @return void |
|
58 | 61 | */ |
59 | 62 | public function setHeight($height); |
60 | 63 | |
@@ -65,16 +68,19 @@ discard block |
||
65 | 68 | |
66 | 69 | /** |
67 | 70 | * @param float $depth |
71 | + * @return void |
|
68 | 72 | */ |
69 | 73 | public function setDepth($depth); |
70 | 74 | |
71 | 75 | /** |
72 | 76 | * @param TaxCategoryInterface $category |
77 | + * @return void |
|
73 | 78 | */ |
74 | 79 | public function setTaxCategory(TaxCategoryInterface $category = null); |
75 | 80 | |
76 | 81 | /** |
77 | 82 | * @param ShippingCategoryInterface $shippingCategory |
83 | + * @return void |
|
78 | 84 | */ |
79 | 85 | public function setShippingCategory(ShippingCategoryInterface $shippingCategory); |
80 | 86 | |
@@ -106,11 +112,13 @@ discard block |
||
106 | 112 | |
107 | 113 | /** |
108 | 114 | * @param ChannelPricingInterface $channelPricing |
115 | + * @return void |
|
109 | 116 | */ |
110 | 117 | public function addChannelPricing(ChannelPricingInterface $channelPricing); |
111 | 118 | |
112 | 119 | /** |
113 | 120 | * @param ChannelPricingInterface $channelPricing |
121 | + * @return void |
|
114 | 122 | */ |
115 | 123 | public function removeChannelPricing(ChannelPricingInterface $channelPricing); |
116 | 124 | |
@@ -121,6 +129,7 @@ discard block |
||
121 | 129 | |
122 | 130 | /** |
123 | 131 | * @param bool $shippingRequired |
132 | + * @return void |
|
124 | 133 | */ |
125 | 134 | public function setShippingRequired($shippingRequired); |
126 | 135 | } |
@@ -21,6 +21,7 @@ |
||
21 | 21 | * @param array $recipients |
22 | 22 | * @param array $data |
23 | 23 | * @param array $attachments |
24 | + * @return void |
|
24 | 25 | */ |
25 | 26 | public function send($code, array $recipients, array $data = [], array $attachments = []); |
26 | 27 | } |
@@ -18,69 +18,90 @@ |
||
18 | 18 | */ |
19 | 19 | interface CreatePageInterface extends BaseCreatePageInterface |
20 | 20 | { |
21 | + /** |
|
22 | + * @return void |
|
23 | + */ |
|
21 | 24 | public function enable(); |
22 | 25 | |
26 | + /** |
|
27 | + * @return void |
|
28 | + */ |
|
23 | 29 | public function disable(); |
24 | 30 | |
25 | 31 | /** |
26 | 32 | * @param string $name |
33 | + * @return void |
|
27 | 34 | */ |
28 | 35 | public function nameIt($name); |
29 | 36 | |
30 | 37 | /** |
31 | 38 | * @param string $code |
39 | + * @return void |
|
32 | 40 | */ |
33 | 41 | public function specifyCode($code); |
34 | 42 | |
35 | 43 | /** |
36 | 44 | * @param string $description |
45 | + * @return void |
|
37 | 46 | */ |
38 | 47 | public function describeItAs($description); |
39 | 48 | |
40 | 49 | /** |
41 | 50 | * @param string $hostname |
51 | + * @return void |
|
42 | 52 | */ |
43 | 53 | public function setHostname($hostname); |
44 | 54 | |
45 | 55 | /** |
46 | 56 | * @param string $contactEmail |
57 | + * @return void |
|
47 | 58 | */ |
48 | 59 | public function setContactEmail($contactEmail); |
49 | 60 | |
50 | 61 | /** |
51 | 62 | * @param string $color |
63 | + * @return void |
|
52 | 64 | */ |
53 | 65 | public function defineColor($color); |
54 | 66 | |
55 | 67 | /** |
56 | 68 | * @param string $language |
69 | + * @return void |
|
57 | 70 | */ |
58 | 71 | public function chooseLocale($language); |
59 | 72 | |
60 | 73 | /** |
61 | 74 | * @param string $currencyCode |
75 | + * @return void |
|
62 | 76 | */ |
63 | 77 | public function chooseCurrency($currencyCode); |
64 | 78 | |
65 | 79 | /** |
66 | 80 | * @param string $taxZone |
81 | + * @return void |
|
67 | 82 | */ |
68 | 83 | public function chooseDefaultTaxZone($taxZone); |
69 | 84 | |
70 | 85 | /** |
71 | 86 | * @param string $locale |
87 | + * @return void |
|
72 | 88 | */ |
73 | 89 | public function chooseDefaultLocale($locale); |
74 | 90 | |
75 | 91 | /** |
76 | 92 | * @param string $currency |
93 | + * @return void |
|
77 | 94 | */ |
78 | 95 | public function chooseBaseCurrency($currency); |
79 | 96 | |
80 | 97 | /** |
81 | 98 | * @param string $taxCalculationStrategy |
99 | + * @return void |
|
82 | 100 | */ |
83 | 101 | public function chooseTaxCalculationStrategy($taxCalculationStrategy); |
84 | 102 | |
103 | + /** |
|
104 | + * @return void |
|
105 | + */ |
|
85 | 106 | public function allowToSkipShippingStep(); |
86 | 107 | } |
@@ -224,6 +224,7 @@ |
||
224 | 224 | /** |
225 | 225 | * @Then the payment method :paymentMethodName should appear in the registry |
226 | 226 | * @Then the payment method :paymentMethodName should be in the registry |
227 | + * @param string $paymentMethodName |
|
227 | 228 | */ |
228 | 229 | public function thePaymentMethodShouldAppearInTheRegistry($paymentMethodName) |
229 | 230 | { |
@@ -18,59 +18,76 @@ |
||
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 $channelName |
46 | + * @return void |
|
37 | 47 | */ |
38 | 48 | public function checkChannel($channelName); |
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 | |
52 | 64 | /** |
53 | 65 | * @param string $username |
66 | + * @return void |
|
54 | 67 | */ |
55 | 68 | public function setPaypalGatewayUsername($username); |
56 | 69 | |
57 | 70 | /** |
58 | 71 | * @param string $password |
72 | + * @return void |
|
59 | 73 | */ |
60 | 74 | public function setPaypalGatewayPassword($password); |
61 | 75 | |
62 | 76 | /** |
63 | 77 | * @param string $signature |
78 | + * @return void |
|
64 | 79 | */ |
65 | 80 | public function setPaypalGatewaySignature($signature); |
66 | 81 | |
67 | 82 | /** |
68 | 83 | * @param string $secretKey |
84 | + * @return void |
|
69 | 85 | */ |
70 | 86 | public function setStripeSecretKey($secretKey); |
71 | 87 | |
72 | 88 | /** |
73 | 89 | * @param string $publishableKey |
90 | + * @return void |
|
74 | 91 | */ |
75 | 92 | public function setStripePublishableKey($publishableKey); |
76 | 93 |
@@ -18,27 +18,38 @@ |
||
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 | /** |
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 $username |
40 | + * @return void |
|
32 | 41 | */ |
33 | 42 | public function setPaypalGatewayUsername($username); |
34 | 43 | |
35 | 44 | /** |
36 | 45 | * @param string $password |
46 | + * @return void |
|
37 | 47 | */ |
38 | 48 | public function setPaypalGatewayPassword($password); |
39 | 49 | |
40 | 50 | /** |
41 | 51 | * @param string $signature |
52 | + * @return void |
|
42 | 53 | */ |
43 | 54 | public function setPaypalGatewaySignature($signature); |
44 | 55 |
@@ -20,12 +20,14 @@ discard block |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param string $code |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function specifyCode($code); |
25 | 26 | |
26 | 27 | /** |
27 | 28 | * @param string $name |
28 | 29 | * @param string $language |
30 | + * @return void |
|
29 | 31 | */ |
30 | 32 | public function nameIt($name, $language); |
31 | 33 | |
@@ -36,6 +38,7 @@ discard block |
||
36 | 38 | |
37 | 39 | /** |
38 | 40 | * @param string $value |
41 | + * @return void |
|
39 | 42 | */ |
40 | 43 | public function addAttributeValue($value); |
41 | 44 | } |
@@ -22,6 +22,7 @@ |
||
22 | 22 | { |
23 | 23 | /** |
24 | 24 | * @param GatewayConfigInterface $gateway |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function setGatewayConfig(GatewayConfigInterface $gateway); |
27 | 28 |
@@ -33,6 +33,7 @@ discard block |
||
33 | 33 | |
34 | 34 | /** |
35 | 35 | * @param string $name |
36 | + * @return void |
|
36 | 37 | */ |
37 | 38 | public function setName($name); |
38 | 39 | |
@@ -43,6 +44,7 @@ discard block |
||
43 | 44 | |
44 | 45 | /** |
45 | 46 | * @param string $description |
47 | + * @return void |
|
46 | 48 | */ |
47 | 49 | public function setDescription($description); |
48 | 50 | |
@@ -53,6 +55,7 @@ discard block |
||
53 | 55 | |
54 | 56 | /** |
55 | 57 | * @param string $instructions |
58 | + * @return void |
|
56 | 59 | */ |
57 | 60 | public function setInstructions($instructions); |
58 | 61 | |
@@ -63,6 +66,7 @@ discard block |
||
63 | 66 | |
64 | 67 | /** |
65 | 68 | * @param string $environment |
69 | + * @return void |
|
66 | 70 | */ |
67 | 71 | public function setEnvironment($environment); |
68 | 72 | |
@@ -73,6 +77,7 @@ discard block |
||
73 | 77 | |
74 | 78 | /** |
75 | 79 | * @param int $position |
80 | + * @return void |
|
76 | 81 | */ |
77 | 82 | public function setPosition($position); |
78 | 83 | } |