@@ -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 | } |
@@ -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 | } |
@@ -20,8 +20,12 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param string $shippingMethod |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function selectShippingMethod($shippingMethod); |
25 | 26 | |
27 | + /** |
|
28 | + * @return void |
|
29 | + */ |
|
26 | 30 | public function continueCheckout(); |
27 | 31 | } |
@@ -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 | } |
@@ -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 |
@@ -50,6 +50,6 @@ |
||
50 | 50 | $parent = $this->taxonRepository->find($parentId); |
51 | 51 | Assert::notNull($parent, sprintf('There is no parent taxon with id %d.', $parentId)); |
52 | 52 | |
53 | - return $parent->getSlug().self::SLUG_SEPARATOR.$taxonSlug; |
|
53 | + return $parent->getSlug() . self::SLUG_SEPARATOR . $taxonSlug; |
|
54 | 54 | } |
55 | 55 | } |
@@ -44,12 +44,12 @@ |
||
44 | 44 | $taxonRepository->find(1)->willReturn($parent); |
45 | 45 | $parent->getSlug()->willReturn('board-games'); |
46 | 46 | |
47 | - $this->generate('Battle games', 1)->shouldReturn('board-games/battle-games');; |
|
47 | + $this->generate('Battle games', 1)->shouldReturn('board-games/battle-games'); ; |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | function it_generates_slug_based_on_new_taxon_name_if_this_taxon_has_no_parent() |
51 | 51 | { |
52 | - $this->generate('Board games')->shouldReturn('board-games');; |
|
52 | + $this->generate('Board games')->shouldReturn('board-games'); ; |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | function it_throws_exception_if_parent_taxon_with_given_id_does_not_exist( |
@@ -167,7 +167,7 @@ |
||
167 | 167 | */ |
168 | 168 | public function thisOrderHasNotBeenPaidForDays(OrderInterface $order, $amount, $time) |
169 | 169 | { |
170 | - $order->setCheckoutCompletedAt(new \DateTime('-'.$amount.' '.$time)); |
|
170 | + $order->setCheckoutCompletedAt(new \DateTime('-' . $amount . ' ' . $time)); |
|
171 | 171 | $this->orderManager->flush(); |
172 | 172 | |
173 | 173 | $this->unpaidOrdersStateUpdater->cancel(); |
@@ -33,12 +33,14 @@ discard block |
||
33 | 33 | |
34 | 34 | /** |
35 | 35 | * @param int $price |
36 | + * @return void |
|
36 | 37 | */ |
37 | 38 | public function specifyPrice($price); |
38 | 39 | |
39 | 40 | /** |
40 | 41 | * @param string $name |
41 | 42 | * @param string $localeCode |
43 | + * @return void |
|
42 | 44 | */ |
43 | 45 | public function nameItIn($name, $localeCode); |
44 | 46 | |
@@ -65,11 +67,18 @@ discard block |
||
65 | 67 | |
66 | 68 | /** |
67 | 69 | * @param TaxonInterface $taxon |
70 | + * @return void |
|
68 | 71 | */ |
69 | 72 | public function selectMainTaxon(TaxonInterface $taxon); |
70 | 73 | |
74 | + /** |
|
75 | + * @return void |
|
76 | + */ |
|
71 | 77 | public function disableTracking(); |
72 | 78 | |
79 | + /** |
|
80 | + * @return void |
|
81 | + */ |
|
73 | 82 | public function enableTracking(); |
74 | 83 | |
75 | 84 | /** |
@@ -87,20 +96,26 @@ discard block |
||
87 | 96 | /** |
88 | 97 | * @param string $path |
89 | 98 | * @param string $code |
99 | + * @return void |
|
90 | 100 | */ |
91 | 101 | public function attachImage($path, $code = null); |
92 | 102 | |
93 | 103 | /** |
94 | 104 | * @param string $code |
95 | 105 | * @param string $path |
106 | + * @return void |
|
96 | 107 | */ |
97 | 108 | public function changeImageWithCode($code, $path); |
98 | 109 | |
99 | 110 | /** |
100 | 111 | * @param string $code |
112 | + * @return void |
|
101 | 113 | */ |
102 | 114 | public function removeImageWithCode($code); |
103 | 115 | |
116 | + /** |
|
117 | + * @return void |
|
118 | + */ |
|
104 | 119 | public function removeFirstImage(); |
105 | 120 | |
106 | 121 | /** |
@@ -123,6 +138,7 @@ discard block |
||
123 | 138 | /** |
124 | 139 | * @param ProductAssociationTypeInterface $productAssociationType |
125 | 140 | * @param string[] $productsNames |
141 | + * @return void |
|
126 | 142 | */ |
127 | 143 | public function associateProducts(ProductAssociationTypeInterface $productAssociationType, array $productsNames); |
128 | 144 | |
@@ -137,6 +153,7 @@ discard block |
||
137 | 153 | /** |
138 | 154 | * @param string $productName |
139 | 155 | * @param ProductAssociationTypeInterface $productAssociationType |
156 | + * @return void |
|
140 | 157 | */ |
141 | 158 | public function removeAssociatedProduct($productName, ProductAssociationTypeInterface $productAssociationType); |
142 | 159 | } |