@@ -38,6 +38,7 @@ discard block |
||
38 | 38 | |
39 | 39 | /** |
40 | 40 | * @param null|PaymentMethodInterface $method |
41 | + * @return void |
|
41 | 42 | */ |
42 | 43 | public function setMethod(PaymentMethodInterface $method = null); |
43 | 44 | |
@@ -48,6 +49,7 @@ discard block |
||
48 | 49 | |
49 | 50 | /** |
50 | 51 | * @param string $state |
52 | + * @return void |
|
51 | 53 | */ |
52 | 54 | public function setState($state); |
53 | 55 | |
@@ -58,6 +60,8 @@ discard block |
||
58 | 60 | |
59 | 61 | /** |
60 | 62 | * @param string |
63 | + * @param string $currencyCode |
|
64 | + * @return void |
|
61 | 65 | */ |
62 | 66 | public function setCurrencyCode($currencyCode); |
63 | 67 | |
@@ -68,6 +72,7 @@ discard block |
||
68 | 72 | |
69 | 73 | /** |
70 | 74 | * @param int $amount |
75 | + * @return void |
|
71 | 76 | */ |
72 | 77 | public function setAmount($amount); |
73 | 78 | |
@@ -78,6 +83,7 @@ discard block |
||
78 | 83 | |
79 | 84 | /** |
80 | 85 | * @param array|\Traversable $details |
86 | + * @return void |
|
81 | 87 | */ |
82 | 88 | public function setDetails($details); |
83 | 89 | } |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | public function thisProductHasPercentAttributeWithValue(ProductInterface $product, $productAttributeName, $value) |
129 | 129 | { |
130 | 130 | $attribute = $this->provideProductAttribute('percent', $productAttributeName); |
131 | - $attributeValue = $this->createProductAttributeValue($value/100, $attribute); |
|
131 | + $attributeValue = $this->createProductAttributeValue($value / 100, $attribute); |
|
132 | 132 | $product->addAttribute($attributeValue); |
133 | 133 | |
134 | 134 | $this->objectManager->flush(); |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | { |
155 | 155 | $attribute = $this->provideProductAttribute('percent', $productAttributeName); |
156 | 156 | $attribute->setPosition($position); |
157 | - $attributeValue = $this->createProductAttributeValue(rand(1, 100)/100, $attribute); |
|
157 | + $attributeValue = $this->createProductAttributeValue(rand(1, 100) / 100, $attribute); |
|
158 | 158 | |
159 | 159 | $product->addAttribute($attributeValue); |
160 | 160 |
@@ -289,7 +289,7 @@ |
||
289 | 289 | $isOpen = false; |
290 | 290 | sleep(1); |
291 | 291 | } |
292 | - } while(!$isOpen && microtime(true) < $end); |
|
292 | + } while (!$isOpen && microtime(true) < $end); |
|
293 | 293 | |
294 | 294 | if (!$isOpen) { |
295 | 295 | throw new UnexpectedPageException(); |
@@ -28,7 +28,7 @@ |
||
28 | 28 | */ |
29 | 29 | public function buildForm(FormBuilderInterface $builder, array $options) |
30 | 30 | { |
31 | - $builder->addEventListener(FormEvents::PRE_SUBMIT , function (FormEvent $event) { |
|
31 | + $builder->addEventListener(FormEvents::PRE_SUBMIT, function (FormEvent $event) { |
|
32 | 32 | $data = $event->getData(); |
33 | 33 | |
34 | 34 | if (!array_key_exists('variantSelectionMethod', $data)) { |
@@ -25,6 +25,6 @@ |
||
25 | 25 | */ |
26 | 26 | public function generate(OrderInterface $order, PaymentInterface $payment) |
27 | 27 | { |
28 | - return mt_rand(1, 100000).'-'.mt_rand(1, 100000); |
|
28 | + return mt_rand(1, 100000) . '-' . mt_rand(1, 100000); |
|
29 | 29 | } |
30 | 30 | } |
@@ -225,6 +225,7 @@ discard block |
||
225 | 225 | |
226 | 226 | /** |
227 | 227 | * @Then the :productVariantCode variant of the :product product should appear in the store |
228 | + * @param string $productVariantCode |
|
228 | 229 | */ |
229 | 230 | public function theProductVariantShouldAppearInTheShop($productVariantCode, ProductInterface $product) |
230 | 231 | { |
@@ -763,7 +764,7 @@ discard block |
||
763 | 764 | |
764 | 765 | /** |
765 | 766 | * @param string $element |
766 | - * @param $message |
|
767 | + * @param string $message |
|
767 | 768 | */ |
768 | 769 | private function assertValidationMessage($element, $message) |
769 | 770 | { |
@@ -165,7 +165,7 @@ |
||
165 | 165 | */ |
166 | 166 | public function iSetItsPriceTo($price = null, $channelName = null) |
167 | 167 | { |
168 | - $this->createPage->specifyPrice($price, (null === $channelName) ? $this->sharedStorage->get('channel') :$channelName); |
|
168 | + $this->createPage->specifyPrice($price, (null === $channelName) ? $this->sharedStorage->get('channel') : $channelName); |
|
169 | 169 | } |
170 | 170 | |
171 | 171 | /** |
@@ -25,15 +25,20 @@ |
||
25 | 25 | */ |
26 | 26 | public function hasValidationErrorWith($message); |
27 | 27 | |
28 | + /** |
|
29 | + * @return void |
|
30 | + */ |
|
28 | 31 | public function logIn(); |
29 | 32 | |
30 | 33 | /** |
31 | 34 | * @param string $password |
35 | + * @return void |
|
32 | 36 | */ |
33 | 37 | public function specifyPassword($password); |
34 | 38 | |
35 | 39 | /** |
36 | 40 | * @param string $username |
41 | + * @return void |
|
37 | 42 | */ |
38 | 43 | public function specifyUsername($username); |
39 | 44 | } |
@@ -18,25 +18,32 @@ |
||
18 | 18 | */ |
19 | 19 | interface CreatePageInterface extends BaseCreatePageInterface |
20 | 20 | { |
21 | + /** |
|
22 | + * @return void |
|
23 | + */ |
|
21 | 24 | public function enable(); |
22 | 25 | |
23 | 26 | /** |
24 | 27 | * @param string $username |
28 | + * @return void |
|
25 | 29 | */ |
26 | 30 | public function specifyUsername($username); |
27 | 31 | |
28 | 32 | /** |
29 | 33 | * @param string $email |
34 | + * @return void |
|
30 | 35 | */ |
31 | 36 | public function specifyEmail($email); |
32 | 37 | |
33 | 38 | /** |
34 | 39 | * @param string $password |
40 | + * @return void |
|
35 | 41 | */ |
36 | 42 | public function specifyPassword($password); |
37 | 43 | |
38 | 44 | /** |
39 | 45 | * @param string $localeCode |
46 | + * @return void |
|
40 | 47 | */ |
41 | 48 | public function specifyLocale($localeCode); |
42 | 49 | } |
@@ -20,21 +20,25 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param string $username |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function changeUsername($username); |
25 | 26 | |
26 | 27 | /** |
27 | 28 | * @param string $email |
29 | + * @return void |
|
28 | 30 | */ |
29 | 31 | public function changeEmail($email); |
30 | 32 | |
31 | 33 | /** |
32 | 34 | * @param string $password |
35 | + * @return void |
|
33 | 36 | */ |
34 | 37 | public function changePassword($password); |
35 | 38 | |
36 | 39 | /** |
37 | 40 | * @param string $localeCode |
41 | + * @return void |
|
38 | 42 | */ |
39 | 43 | public function changeLocale($localeCode); |
40 | 44 | } |