@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | */ |
89 | 89 | public function storeAllowsPaying($paymentMethodName, $position = null) |
90 | 90 | { |
91 | - $this->createPaymentMethod($paymentMethodName, 'PM_'.$paymentMethodName, 'Payment method', true, $position); |
|
91 | + $this->createPaymentMethod($paymentMethodName, 'PM_' . $paymentMethodName, 'Payment method', true, $position); |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | /** |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | */ |
141 | 141 | public function theStoreHasPaymentMethodNotAssignedToAnyChannel($paymentMethodName) |
142 | 142 | { |
143 | - $this->createPaymentMethod($paymentMethodName, 'PM_'.$paymentMethodName, 'Payment method', false); |
|
143 | + $this->createPaymentMethod($paymentMethodName, 'PM_' . $paymentMethodName, 'Payment method', false); |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | /** |
@@ -116,7 +116,7 @@ |
||
116 | 116 | */ |
117 | 117 | public function iChangeRatioTo($ratio) |
118 | 118 | { |
119 | - $this->updatePage->changeRatio((float)$ratio); |
|
119 | + $this->updatePage->changeRatio((float) $ratio); |
|
120 | 120 | } |
121 | 121 | |
122 | 122 | /** |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | $this->loadFixturesFromFile('authentication/api_administrator.yml'); |
147 | 147 | $zones = $this->loadFixturesFromFile('resources/zones.yml'); |
148 | 148 | |
149 | - $this->client->request('GET', '/api/zones/'.$zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithAccept); |
|
149 | + $this->client->request('GET', '/api/zones/' . $zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithAccept); |
|
150 | 150 | |
151 | 151 | $response = $this->client->getResponse(); |
152 | 152 | $this->assertResponse($response, 'zone/show_response', Response::HTTP_OK); |
@@ -184,7 +184,7 @@ discard block |
||
184 | 184 | $this->loadFixturesFromFile('authentication/api_administrator.yml'); |
185 | 185 | $zones = $this->loadFixturesFromFile('resources/zones.yml'); |
186 | 186 | |
187 | - $this->client->request('PUT', '/api/zones/'.$zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType); |
|
187 | + $this->client->request('PUT', '/api/zones/' . $zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType); |
|
188 | 188 | |
189 | 189 | $response = $this->client->getResponse(); |
190 | 190 | $this->assertResponse($response, 'zone/update_validation_fail_response', Response::HTTP_BAD_REQUEST); |
@@ -211,12 +211,12 @@ discard block |
||
211 | 211 | } |
212 | 212 | EOT; |
213 | 213 | |
214 | - $this->client->request('PUT', '/api/zones/'.$zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType, $data); |
|
214 | + $this->client->request('PUT', '/api/zones/' . $zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType, $data); |
|
215 | 215 | |
216 | 216 | $response = $this->client->getResponse(); |
217 | 217 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
218 | 218 | |
219 | - $this->client->request('GET', '/api/zones/'.$zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithAccept); |
|
219 | + $this->client->request('GET', '/api/zones/' . $zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithAccept); |
|
220 | 220 | |
221 | 221 | $response = $this->client->getResponse(); |
222 | 222 | $this->assertResponse($response, 'zone/update_response', Response::HTTP_OK); |
@@ -262,12 +262,12 @@ discard block |
||
262 | 262 | } |
263 | 263 | EOT; |
264 | 264 | |
265 | - $this->client->request('PATCH', '/api/zones/'.$zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType, $data); |
|
265 | + $this->client->request('PATCH', '/api/zones/' . $zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType, $data); |
|
266 | 266 | |
267 | 267 | $response = $this->client->getResponse(); |
268 | 268 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
269 | 269 | |
270 | - $this->client->request('GET', '/api/zones/'.$zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithAccept); |
|
270 | + $this->client->request('GET', '/api/zones/' . $zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithAccept); |
|
271 | 271 | |
272 | 272 | $response = $this->client->getResponse(); |
273 | 273 | $this->assertResponse($response, 'zone/update_response', Response::HTTP_OK); |
@@ -305,12 +305,12 @@ discard block |
||
305 | 305 | $this->loadFixturesFromFile('authentication/api_administrator.yml'); |
306 | 306 | $zones = $this->loadFixturesFromFile('resources/zones.yml'); |
307 | 307 | |
308 | - $this->client->request('DELETE', '/api/zones/'.$zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType); |
|
308 | + $this->client->request('DELETE', '/api/zones/' . $zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType); |
|
309 | 309 | |
310 | 310 | $response = $this->client->getResponse(); |
311 | 311 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
312 | 312 | |
313 | - $this->client->request('GET', '/api/zones/'.$zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithAccept); |
|
313 | + $this->client->request('GET', '/api/zones/' . $zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithAccept); |
|
314 | 314 | |
315 | 315 | $response = $this->client->getResponse(); |
316 | 316 | $this->assertResponseCode($response, Response::HTTP_NOT_FOUND); |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | $this->loadFixturesFromFile('authentication/api_administrator.yml'); |
63 | 63 | $locales = $this->loadFixturesFromFile('resources/locales.yml'); |
64 | 64 | |
65 | - $this->client->request('GET', '/api/locales/'.$locales['locale_en']->getCode(), [], [], static::$authorizedHeaderWithAccept); |
|
65 | + $this->client->request('GET', '/api/locales/' . $locales['locale_en']->getCode(), [], [], static::$authorizedHeaderWithAccept); |
|
66 | 66 | |
67 | 67 | $response = $this->client->getResponse(); |
68 | 68 | $this->assertResponse($response, 'locale/show_response', Response::HTTP_OK); |
@@ -130,12 +130,12 @@ discard block |
||
130 | 130 | $this->loadFixturesFromFile('authentication/api_administrator.yml'); |
131 | 131 | $locales = $this->loadFixturesFromFile('resources/locales.yml'); |
132 | 132 | |
133 | - $this->client->request('DELETE', '/api/locales/'.$locales['locale_en']->getCode(), [], [], static::$authorizedHeaderWithContentType, []); |
|
133 | + $this->client->request('DELETE', '/api/locales/' . $locales['locale_en']->getCode(), [], [], static::$authorizedHeaderWithContentType, []); |
|
134 | 134 | |
135 | 135 | $response = $this->client->getResponse(); |
136 | 136 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
137 | 137 | |
138 | - $this->client->request('GET', '/api/locales/'.$locales['locale_en']->getId(), [], [], static::$authorizedHeaderWithAccept); |
|
138 | + $this->client->request('GET', '/api/locales/' . $locales['locale_en']->getId(), [], [], static::$authorizedHeaderWithAccept); |
|
139 | 139 | |
140 | 140 | $response = $this->client->getResponse(); |
141 | 141 | $this->assertResponse($response, 'error/not_found_response', Response::HTTP_NOT_FOUND); |
@@ -96,7 +96,7 @@ |
||
96 | 96 | $this->loadFixturesFromFile('authentication/api_administrator.yml'); |
97 | 97 | $countries = $this->loadFixturesFromFile('resources/countries.yml'); |
98 | 98 | |
99 | - $this->client->request('GET', '/api/countries/'.$countries['country_NL']->getCode(), [], [], static::$authorizedHeaderWithAccept); |
|
99 | + $this->client->request('GET', '/api/countries/' . $countries['country_NL']->getCode(), [], [], static::$authorizedHeaderWithAccept); |
|
100 | 100 | |
101 | 101 | $response = $this->client->getResponse(); |
102 | 102 | $this->assertResponse($response, 'country/show_response', Response::HTTP_OK); |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | $this->loadFixturesFromFile('authentication/api_administrator.yml'); |
41 | 41 | $countryData = $this->loadFixturesFromFile('resources/countries.yml'); |
42 | 42 | |
43 | - $this->client->request('GET', '/api/countries/'.$countryData['country_BE']->getCode().'/provinces/'.$countryData['province_BE_limburg']->getCode(), [], [], static::$authorizedHeaderWithContentType); |
|
43 | + $this->client->request('GET', '/api/countries/' . $countryData['country_BE']->getCode() . '/provinces/' . $countryData['province_BE_limburg']->getCode(), [], [], static::$authorizedHeaderWithContentType); |
|
44 | 44 | |
45 | 45 | $response = $this->client->getResponse(); |
46 | 46 | $this->assertResponse($response, 'province/show_response', Response::HTTP_OK); |
@@ -51,12 +51,12 @@ discard block |
||
51 | 51 | $this->loadFixturesFromFile('authentication/api_administrator.yml'); |
52 | 52 | $countryData = $this->loadFixturesFromFile('resources/countries.yml'); |
53 | 53 | |
54 | - $this->client->request('DELETE', '/api/countries/'.$countryData['country_BE']->getCode().'/provinces/'.$countryData['province_BE_limburg']->getCode(), [], [], static::$authorizedHeaderWithContentType); |
|
54 | + $this->client->request('DELETE', '/api/countries/' . $countryData['country_BE']->getCode() . '/provinces/' . $countryData['province_BE_limburg']->getCode(), [], [], static::$authorizedHeaderWithContentType); |
|
55 | 55 | |
56 | 56 | $response = $this->client->getResponse(); |
57 | 57 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
58 | 58 | |
59 | - $this->client->request('GET', '/api/countries/'.$countryData['country_BE']->getCode().'/provinces/'.$countryData['province_BE_limburg']->getCode(), [], [], static::$authorizedHeaderWithContentType); |
|
59 | + $this->client->request('GET', '/api/countries/' . $countryData['country_BE']->getCode() . '/provinces/' . $countryData['province_BE_limburg']->getCode(), [], [], static::$authorizedHeaderWithContentType); |
|
60 | 60 | |
61 | 61 | $response = $this->client->getResponse(); |
62 | 62 | $this->assertResponse($response, 'error/not_found_response', Response::HTTP_NOT_FOUND); |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | public function theStoreHasAndShippingCategory($firstShippingCategoryName, $secondShippingCategoryName = null) |
70 | 70 | { |
71 | 71 | $this->createShippingCategory($firstShippingCategoryName); |
72 | - (null === $secondShippingCategoryName)? : $this->createShippingCategory($secondShippingCategoryName); |
|
72 | + (null === $secondShippingCategoryName) ?: $this->createShippingCategory($secondShippingCategoryName); |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | /** |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | private function createShippingCategory($shippingCategoryName) |
79 | 79 | { |
80 | 80 | /** @var ShippingCategoryInterface $shippingCategory */ |
81 | - $shippingCategory = $this->shippingCategoryFactory->createNew(); |
|
81 | + $shippingCategory = $this->shippingCategoryFactory->createNew(); |
|
82 | 82 | $shippingCategory->setName($shippingCategoryName); |
83 | 83 | $shippingCategory->setCode(StringInflector::nameToCode($shippingCategoryName)); |
84 | 84 |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | public function load(array $config, ContainerBuilder $container) |
28 | 28 | { |
29 | 29 | $config = $this->processConfiguration($this->getConfiguration($config, $container), $config); |
30 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
30 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
31 | 31 | |
32 | 32 | $loader->load('services.xml'); |
33 | 33 | |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | foreach ($resources as $subjectName => $subjectConfig) { |
57 | 57 | foreach ($subjectConfig as $resourceName => $resourceConfig) { |
58 | 58 | if (is_array($resourceConfig)) { |
59 | - $resolvedResources[$subjectName.'_'.$resourceName] = $resourceConfig; |
|
59 | + $resolvedResources[$subjectName . '_' . $resourceName] = $resourceConfig; |
|
60 | 60 | } |
61 | 61 | } |
62 | 62 | } |
@@ -368,7 +368,7 @@ discard block |
||
368 | 368 | ) { |
369 | 369 | $customer = $user->getCustomer(); |
370 | 370 | for ($i = 0; $i < $numberOfOrders; $i++) { |
371 | - $order = $this->createOrder($customer, '#00000'.$i); |
|
371 | + $order = $this->createOrder($customer, '#00000' . $i); |
|
372 | 372 | $this->checkoutUsing($order, $shippingMethod, clone $address, $paymentMethod); |
373 | 373 | $this->applyPaymentTransitionOnOrder($order, PaymentTransitions::TRANSITION_COMPLETE); |
374 | 374 | |
@@ -415,7 +415,7 @@ discard block |
||
415 | 415 | $total = $this->getPriceFromString($total); |
416 | 416 | |
417 | 417 | for ($i = 0; $i < $numberOfOrders; $i++) { |
418 | - $order = $this->createOrder($customers[rand(0, $numberOfCustomers - 1)], '#'.uniqid()); |
|
418 | + $order = $this->createOrder($customers[rand(0, $numberOfCustomers - 1)], '#' . uniqid()); |
|
419 | 419 | $order->setState(OrderInterface::STATE_NEW); // Temporary, we should use checkout to place these orders. |
420 | 420 | $this->applyPaymentTransitionOnOrder($order, PaymentTransitions::TRANSITION_COMPLETE); |
421 | 421 | |
@@ -445,7 +445,7 @@ discard block |
||
445 | 445 | $total = $this->getPriceFromString($total); |
446 | 446 | |
447 | 447 | for ($i = 0; $i < $numberOfOrders; $i++) { |
448 | - $order = $this->createOrder($customers[rand(0, $numberOfCustomers - 1)], '#'.uniqid(), $product->getChannels()->first()); |
|
448 | + $order = $this->createOrder($customers[rand(0, $numberOfCustomers - 1)], '#' . uniqid(), $product->getChannels()->first()); |
|
449 | 449 | $order->setState(OrderInterface::STATE_NEW); |
450 | 450 | $this->applyPaymentTransitionOnOrder($order, PaymentTransitions::TRANSITION_COMPLETE); |
451 | 451 | |
@@ -621,7 +621,7 @@ discard block |
||
621 | 621 | $customer = $this->customerFactory->createNew(); |
622 | 622 | $customer->setEmail(sprintf('john%[email protected]', uniqid())); |
623 | 623 | $customer->setFirstname('John'); |
624 | - $customer->setLastname('Doe'.$i); |
|
624 | + $customer->setLastname('Doe' . $i); |
|
625 | 625 | |
626 | 626 | $customers[] = $customer; |
627 | 627 |