@@ -18,71 +18,95 @@ |
||
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 | |
108 | + /** |
|
109 | + * @return void |
|
110 | + */ |
|
87 | 111 | public function allowToSkipPaymentStep(); |
88 | 112 | } |
@@ -12,8 +12,8 @@ |
||
12 | 12 | namespace Sylius\Component\Attribute\AttributeType; |
13 | 13 | |
14 | 14 | use Sylius\Component\Attribute\Model\AttributeValueInterface; |
15 | -use Symfony\Component\Validator\Constraints\NotBlank; |
|
16 | 15 | use Symfony\Component\Validator\ConstraintViolationListInterface; |
16 | +use Symfony\Component\Validator\Constraints\NotBlank; |
|
17 | 17 | use Symfony\Component\Validator\Context\ExecutionContextInterface; |
18 | 18 | |
19 | 19 | /** |
@@ -11,8 +11,6 @@ |
||
11 | 11 | |
12 | 12 | namespace Sylius\Component\Attribute\Model; |
13 | 13 | |
14 | -use Doctrine\Common\Collections\ArrayCollection; |
|
15 | -use Doctrine\Common\Collections\Collection; |
|
16 | 14 | use Sylius\Component\Attribute\AttributeType\TextAttributeType; |
17 | 15 | use Sylius\Component\Resource\Model\TimestampableTrait; |
18 | 16 | use Sylius\Component\Resource\Model\TranslatableTrait; |
@@ -12,7 +12,6 @@ |
||
12 | 12 | namespace Sylius\Component\Core\Checker; |
13 | 13 | |
14 | 14 | use Sylius\Component\Core\Model\OrderInterface; |
15 | -use Sylius\Component\Core\Model\PaymentInterface; |
|
16 | 15 | use Sylius\Component\Payment\Resolver\PaymentMethodsResolverInterface; |
17 | 16 | |
18 | 17 | /** |
@@ -33,6 +33,7 @@ discard block |
||
33 | 33 | |
34 | 34 | /** |
35 | 35 | * @param CurrencyInterface $currency |
36 | + * @return void |
|
36 | 37 | */ |
37 | 38 | public function setBaseCurrency(CurrencyInterface $currency); |
38 | 39 | |
@@ -43,6 +44,7 @@ discard block |
||
43 | 44 | |
44 | 45 | /** |
45 | 46 | * @param LocaleInterface $locale |
47 | + * @return void |
|
46 | 48 | */ |
47 | 49 | public function setDefaultLocale(LocaleInterface $locale); |
48 | 50 | |
@@ -53,6 +55,7 @@ discard block |
||
53 | 55 | |
54 | 56 | /** |
55 | 57 | * @param ZoneInterface $defaultTaxZone |
58 | + * @return void |
|
56 | 59 | */ |
57 | 60 | public function setDefaultTaxZone(ZoneInterface $defaultTaxZone); |
58 | 61 | |
@@ -63,6 +66,7 @@ discard block |
||
63 | 66 | |
64 | 67 | /** |
65 | 68 | * @param string $taxCalculationStrategy |
69 | + * @return void |
|
66 | 70 | */ |
67 | 71 | public function setTaxCalculationStrategy($taxCalculationStrategy); |
68 | 72 | |
@@ -73,6 +77,7 @@ discard block |
||
73 | 77 | |
74 | 78 | /** |
75 | 79 | * @param string $themeName |
80 | + * @return void |
|
76 | 81 | */ |
77 | 82 | public function setThemeName($themeName); |
78 | 83 | |
@@ -83,6 +88,7 @@ discard block |
||
83 | 88 | |
84 | 89 | /** |
85 | 90 | * @param string $contactEmail |
91 | + * @return void |
|
86 | 92 | */ |
87 | 93 | public function setContactEmail($contactEmail); |
88 | 94 | |
@@ -93,6 +99,7 @@ discard block |
||
93 | 99 | |
94 | 100 | /** |
95 | 101 | * @param bool $skippingShippingStepAllowed |
102 | + * @return void |
|
96 | 103 | */ |
97 | 104 | public function setSkippingShippingStepAllowed($skippingShippingStepAllowed); |
98 | 105 | |
@@ -103,6 +110,7 @@ discard block |
||
103 | 110 | |
104 | 111 | /** |
105 | 112 | * @param bool $skippingPaymentStepAllowed |
113 | + * @return void |
|
106 | 114 | */ |
107 | 115 | public function setSkippingPaymentStepAllowed($skippingPaymentStepAllowed); |
108 | 116 | |
@@ -113,6 +121,7 @@ discard block |
||
113 | 121 | |
114 | 122 | /** |
115 | 123 | * @param bool $accountVerificationRequired |
124 | + * @return void |
|
116 | 125 | */ |
117 | 126 | public function setAccountVerificationRequired($accountVerificationRequired); |
118 | 127 | } |
@@ -62,10 +62,10 @@ |
||
62 | 62 | public function getMatchers() |
63 | 63 | { |
64 | 64 | return [ |
65 | - 'haveLength' => function($subject, $length) { |
|
65 | + 'haveLength' => function ($subject, $length) { |
|
66 | 66 | return $length === strlen($subject); |
67 | 67 | }, |
68 | - 'beInRange' => function($subject, $min, $max) { |
|
68 | + 'beInRange' => function ($subject, $min, $max) { |
|
69 | 69 | return $subject >= $min && $subject <= $max; |
70 | 70 | } |
71 | 71 | ]; |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | } |
66 | 66 | } |
67 | 67 | } |
68 | -EOT; |
|
68 | +eot; |
|
69 | 69 | |
70 | 70 | $this->client->request('POST', '/api/v1/product-association-types/', [], [], [ |
71 | 71 | 'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ', |
@@ -213,7 +213,7 @@ discard block |
||
213 | 213 | } |
214 | 214 | } |
215 | 215 | } |
216 | -EOT; |
|
216 | +eot; |
|
217 | 217 | |
218 | 218 | $this->client->request('PUT', $this->getAssociationTypeUrl($productAssociationType), [], [], [ |
219 | 219 | 'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ', |
@@ -259,7 +259,7 @@ discard block |
||
259 | 259 | } |
260 | 260 | } |
261 | 261 | } |
262 | -EOT; |
|
262 | +eot; |
|
263 | 263 | |
264 | 264 | $this->client->request('PATCH', $this->getAssociationTypeUrl($productAssociationType), [], [], [ |
265 | 265 | 'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ', |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | } |
147 | 147 | } |
148 | 148 | } |
149 | -EOT; |
|
149 | +eot; |
|
150 | 150 | |
151 | 151 | $this->client->request('POST', '/api/v1/product-attributes/text', [], [], static::$authorizedHeaderWithContentType, $data); |
152 | 152 | |
@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | } |
204 | 204 | } |
205 | 205 | } |
206 | -EOT; |
|
206 | +eot; |
|
207 | 207 | |
208 | 208 | $this->client->request('PUT', $this->getProductAttributeUrl($productAttribute), [], [], static::$authorizedHeaderWithContentType, $data); |
209 | 209 | |
@@ -238,7 +238,7 @@ discard block |
||
238 | 238 | } |
239 | 239 | } |
240 | 240 | } |
241 | -EOT; |
|
241 | +eot; |
|
242 | 242 | |
243 | 243 | $this->client->request('PATCH', $this->getProductAttributeUrl($productAttribute), [], [], static::$authorizedHeaderWithContentType, $data); |
244 | 244 | |
@@ -266,7 +266,7 @@ discard block |
||
266 | 266 | { |
267 | 267 | "type": "integer" |
268 | 268 | } |
269 | -EOT; |
|
269 | +eot; |
|
270 | 270 | |
271 | 271 | $this->client->request('PATCH', $this->getProductAttributeUrl($productAttribute), [], [], static::$authorizedHeaderWithContentType, $data); |
272 | 272 | |
@@ -310,7 +310,7 @@ discard block |
||
310 | 310 | } |
311 | 311 | } |
312 | 312 | } |
313 | -EOT; |
|
313 | +eot; |
|
314 | 314 | |
315 | 315 | $this->client->request('POST', '/api/v1/product-attributes/select', [], [], static::$authorizedHeaderWithContentType, $data); |
316 | 316 |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | } |
151 | 151 | } |
152 | 152 | } |
153 | -EOT; |
|
153 | +eot; |
|
154 | 154 | |
155 | 155 | $this->client->request('POST', '/api/v1/products/', [], [], static::$authorizedHeaderWithContentType, $data); |
156 | 156 | |
@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | } |
192 | 192 | } |
193 | 193 | } |
194 | -EOT; |
|
194 | +eot; |
|
195 | 195 | $this->client->request('PUT', $this->getProductUrl($product), [], [], static::$authorizedHeaderWithContentType, $data); |
196 | 196 | $response = $this->client->getResponse(); |
197 | 197 | |
@@ -217,7 +217,7 @@ discard block |
||
217 | 217 | } |
218 | 218 | } |
219 | 219 | } |
220 | -EOT; |
|
220 | +eot; |
|
221 | 221 | $this->client->request('PATCH', $this->getProductUrl($product), [], [], static::$authorizedHeaderWithContentType, $data); |
222 | 222 | $response = $this->client->getResponse(); |
223 | 223 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
@@ -275,7 +275,7 @@ discard block |
||
275 | 275 | } |
276 | 276 | } |
277 | 277 | } |
278 | -EOT; |
|
278 | +eot; |
|
279 | 279 | |
280 | 280 | $this->client->request('POST', '/api/v1/products/', [], [], static::$authorizedHeaderWithContentType, $data); |
281 | 281 | |
@@ -304,7 +304,7 @@ discard block |
||
304 | 304 | } |
305 | 305 | } |
306 | 306 | } |
307 | -EOT; |
|
307 | +eot; |
|
308 | 308 | |
309 | 309 | $this->client->request('POST', '/api/v1/products/', [], [], static::$authorizedHeaderWithContentType, $data); |
310 | 310 | |
@@ -333,7 +333,7 @@ discard block |
||
333 | 333 | }, |
334 | 334 | "productTaxons": "category,mugs" |
335 | 335 | } |
336 | -EOT; |
|
336 | +eot; |
|
337 | 337 | |
338 | 338 | $this->client->request('POST', '/api/v1/products/', [], [], static::$authorizedHeaderWithContentType, $data); |
339 | 339 | |
@@ -361,7 +361,7 @@ discard block |
||
361 | 361 | } |
362 | 362 | } |
363 | 363 | } |
364 | -EOT; |
|
364 | +eot; |
|
365 | 365 | |
366 | 366 | $this->client->request('POST', '/api/v1/products/', [], [], static::$authorizedHeaderWithContentType, $data); |
367 | 367 | |
@@ -401,7 +401,7 @@ discard block |
||
401 | 401 | } |
402 | 402 | } |
403 | 403 | } |
404 | -EOT; |
|
404 | +eot; |
|
405 | 405 | |
406 | 406 | $this->client->request('POST', '/api/v1/products/', [], [], static::$authorizedHeaderWithContentType, $data); |
407 | 407 | |
@@ -439,7 +439,7 @@ discard block |
||
439 | 439 | } |
440 | 440 | } |
441 | 441 | } |
442 | -EOT; |
|
442 | +eot; |
|
443 | 443 | |
444 | 444 | $this->client->request('POST', '/api/v1/products/', [], [], static::$authorizedHeaderWithContentType, $data); |
445 | 445 | |
@@ -474,7 +474,7 @@ discard block |
||
474 | 474 | } |
475 | 475 | } |
476 | 476 | } |
477 | -EOT; |
|
477 | +eot; |
|
478 | 478 | |
479 | 479 | $this->client->request( |
480 | 480 | 'POST', |
@@ -517,7 +517,7 @@ discard block |
||
517 | 517 | } |
518 | 518 | } |
519 | 519 | } |
520 | -EOT; |
|
520 | +eot; |
|
521 | 521 | |
522 | 522 | $this->client->request('POST', '/api/v1/products/', [], [], static::$authorizedHeaderWithContentType, $data); |
523 | 523 |