@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | protected $data; |
41 | 41 | |
42 | 42 | /** |
43 | - * @param mixed $message |
|
43 | + * @param \Swift_Message $message |
|
44 | 44 | * @param array $recipients |
45 | 45 | * @param EmailInterface $email |
46 | 46 | * @param array $data |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | } |
55 | 55 | |
56 | 56 | /** |
57 | - * @return array |
|
57 | + * @return string[] |
|
58 | 58 | */ |
59 | 59 | public function getRecipients() |
60 | 60 | { |
@@ -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(); |
@@ -46,7 +46,7 @@ |
||
46 | 46 | $this->loadFixturesFromFile('authentication/api_administrator.yml'); |
47 | 47 | $channelData = $this->loadFixturesFromFile('resources/channels.yml'); |
48 | 48 | |
49 | - $this->client->request('GET', '/api/v1/channels/'.$channelData['channel_web']->getId(), [], [], static::$authorizedHeaderWithContentType); |
|
49 | + $this->client->request('GET', '/api/v1/channels/' . $channelData['channel_web']->getId(), [], [], static::$authorizedHeaderWithContentType); |
|
50 | 50 | |
51 | 51 | $response = $this->client->getResponse(); |
52 | 52 | $this->assertResponse($response, 'channel/show_response', Response::HTTP_OK); |
@@ -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 | } |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | $this->loadFixturesFromFile('authentication/api_administrator.yml'); |
85 | 85 | $products = $this->loadFixturesFromFile('resources/products.yml'); |
86 | 86 | |
87 | - $this->client->request('GET', '/api/v1/products/'.$products['product1']->getId(), [], [], static::$authorizedHeaderWithAccept); |
|
87 | + $this->client->request('GET', '/api/v1/products/' . $products['product1']->getId(), [], [], static::$authorizedHeaderWithAccept); |
|
88 | 88 | |
89 | 89 | $response = $this->client->getResponse(); |
90 | 90 | $this->assertResponse($response, 'product/show_response', Response::HTTP_OK); |
@@ -111,12 +111,12 @@ discard block |
||
111 | 111 | $this->loadFixturesFromFile('authentication/api_administrator.yml'); |
112 | 112 | $products = $this->loadFixturesFromFile('resources/products.yml'); |
113 | 113 | |
114 | - $this->client->request('DELETE', '/api/v1/products/'.$products['product1']->getId(), [], [], static::$authorizedHeaderWithContentType, []); |
|
114 | + $this->client->request('DELETE', '/api/v1/products/' . $products['product1']->getId(), [], [], static::$authorizedHeaderWithContentType, []); |
|
115 | 115 | |
116 | 116 | $response = $this->client->getResponse(); |
117 | 117 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
118 | 118 | |
119 | - $this->client->request('GET', '/api/v1/products/'.$products['product1']->getId(), [], [], static::$authorizedHeaderWithAccept); |
|
119 | + $this->client->request('GET', '/api/v1/products/' . $products['product1']->getId(), [], [], static::$authorizedHeaderWithAccept); |
|
120 | 120 | |
121 | 121 | $response = $this->client->getResponse(); |
122 | 122 | $this->assertResponse($response, 'error/not_found_response', Response::HTTP_NOT_FOUND); |
@@ -186,7 +186,7 @@ discard block |
||
186 | 186 | } |
187 | 187 | } |
188 | 188 | EOT; |
189 | - $this->client->request('PUT', '/api/v1/products/'. $products["product3"]->getId(), [], [], static::$authorizedHeaderWithContentType, $data); |
|
189 | + $this->client->request('PUT', '/api/v1/products/' . $products["product3"]->getId(), [], [], static::$authorizedHeaderWithContentType, $data); |
|
190 | 190 | $response = $this->client->getResponse(); |
191 | 191 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
192 | 192 | } |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | } |
211 | 211 | } |
212 | 212 | EOT; |
213 | - $this->client->request('PATCH', '/api/v1/products/'. $products["product1"]->getId(), [], [], static::$authorizedHeaderWithContentType, $data); |
|
213 | + $this->client->request('PATCH', '/api/v1/products/' . $products["product1"]->getId(), [], [], static::$authorizedHeaderWithContentType, $data); |
|
214 | 214 | $response = $this->client->getResponse(); |
215 | 215 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
216 | 216 | } |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | } |
148 | 148 | } |
149 | 149 | } |
150 | -EOT; |
|
150 | +eot; |
|
151 | 151 | |
152 | 152 | $this->client->request('POST', '/api/v1/products/', [], [], static::$authorizedHeaderWithContentType, $data); |
153 | 153 | |
@@ -187,7 +187,7 @@ discard block |
||
187 | 187 | } |
188 | 188 | } |
189 | 189 | } |
190 | -EOT; |
|
190 | +eot; |
|
191 | 191 | $this->client->request('PUT', '/api/v1/products/'. $products["product3"]->getId(), [], [], static::$authorizedHeaderWithContentType, $data); |
192 | 192 | $response = $this->client->getResponse(); |
193 | 193 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
@@ -211,7 +211,7 @@ discard block |
||
211 | 211 | } |
212 | 212 | } |
213 | 213 | } |
214 | -EOT; |
|
214 | +eot; |
|
215 | 215 | $this->client->request('PATCH', '/api/v1/products/'. $products["product1"]->getId(), [], [], static::$authorizedHeaderWithContentType, $data); |
216 | 216 | $response = $this->client->getResponse(); |
217 | 217 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
@@ -269,7 +269,7 @@ discard block |
||
269 | 269 | } |
270 | 270 | } |
271 | 271 | } |
272 | -EOT; |
|
272 | +eot; |
|
273 | 273 | |
274 | 274 | $this->client->request('POST', '/api/v1/products/', [], [], static::$authorizedHeaderWithContentType, $data); |
275 | 275 | |
@@ -298,7 +298,7 @@ discard block |
||
298 | 298 | } |
299 | 299 | } |
300 | 300 | } |
301 | -EOT; |
|
301 | +eot; |
|
302 | 302 | |
303 | 303 | $this->client->request('POST', '/api/v1/products/', [], [], static::$authorizedHeaderWithContentType, $data); |
304 | 304 | |
@@ -327,7 +327,7 @@ discard block |
||
327 | 327 | }, |
328 | 328 | "product_taxons": "category,mugs" |
329 | 329 | } |
330 | -EOT; |
|
330 | +eot; |
|
331 | 331 | |
332 | 332 | $this->client->request('POST', '/api/v1/products/', [], [], static::$authorizedHeaderWithContentType, $data); |
333 | 333 | |
@@ -358,7 +358,7 @@ discard block |
||
358 | 358 | } |
359 | 359 | } |
360 | 360 | } |
361 | -EOT; |
|
361 | +eot; |
|
362 | 362 | |
363 | 363 | $this->client->request('POST', '/api/v1/products/', [], [], static::$authorizedHeaderWithContentType, $data); |
364 | 364 | |
@@ -398,7 +398,7 @@ discard block |
||
398 | 398 | } |
399 | 399 | } |
400 | 400 | } |
401 | -EOT; |
|
401 | +eot; |
|
402 | 402 | |
403 | 403 | $this->client->request('POST', '/api/v1/products/', [], [], static::$authorizedHeaderWithContentType, $data); |
404 | 404 | |
@@ -433,7 +433,7 @@ discard block |
||
433 | 433 | } |
434 | 434 | } |
435 | 435 | } |
436 | -EOT; |
|
436 | +eot; |
|
437 | 437 | |
438 | 438 | $this->client->request( |
439 | 439 | 'POST', |
@@ -476,7 +476,7 @@ discard block |
||
476 | 476 | } |
477 | 477 | } |
478 | 478 | } |
479 | -EOT; |
|
479 | +eot; |
|
480 | 480 | |
481 | 481 | $this->client->request('POST', '/api/v1/products/', [], [], static::$authorizedHeaderWithContentType, $data); |
482 | 482 |
@@ -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 | } |