Completed
Push — locale-in-url ( 6d9eda )
by Kamil
23:08
created
src/Sylius/Behat/Context/Ui/Admin/ManagingProductVariantsContext.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@
 block discarded – undo
166 166
      */
167 167
     public function iSetItsPriceTo($price = null, $channel = null)
168 168
     {
169
-        $this->createPage->specifyPrice($price, (null === $channel) ? $this->sharedStorage->get('channel') :$channel);
169
+        $this->createPage->specifyPrice($price, (null === $channel) ? $this->sharedStorage->get('channel') : $channel);
170 170
     }
171 171
 
172 172
     /**
Please login to merge, or discard this patch.
app/migrations/Version20161214153137.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
         $this->addSql('CREATE TABLE sylius_product_variant_translation (id INT AUTO_INCREMENT NOT NULL, translatable_id INT NOT NULL, name VARCHAR(255) DEFAULT NULL, locale VARCHAR(255) NOT NULL, INDEX IDX_8DC18EDC2C2AC5D3 (translatable_id), UNIQUE INDEX sylius_product_variant_translation_uniq_trans (translatable_id, locale), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = InnoDB');
35 35
         $this->addSql('ALTER TABLE sylius_product_variant_translation ADD CONSTRAINT FK_8DC18EDC2C2AC5D3 FOREIGN KEY (translatable_id) REFERENCES sylius_product_variant (id) ON DELETE CASCADE');
36
-        $this->addSql('INSERT INTO sylius_product_variant_translation (translatable_id, name, locale) SELECT id, name, "'.$defaultLocale.'" from sylius_product_variant WHERE sylius_product_variant.name IS NOT null');
36
+        $this->addSql('INSERT INTO sylius_product_variant_translation (translatable_id, name, locale) SELECT id, name, "' . $defaultLocale . '" from sylius_product_variant WHERE sylius_product_variant.name IS NOT null');
37 37
         $this->addSql('ALTER TABLE sylius_product_variant DROP name');
38 38
     }
39 39
 
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
         $this->abortIf($this->connection->getDatabasePlatform()->getName() != 'mysql', 'Migration can only be executed safely on \'mysql\'.');
48 48
 
49 49
         $this->addSql('ALTER TABLE sylius_product_variant ADD name VARCHAR(255) DEFAULT NULL COLLATE utf8_unicode_ci');
50
-        $this->addSql('UPDATE sylius_product_variant SET name = (SELECT name FROM sylius_product_variant_translation WHERE sylius_product_variant_translation.translatable_id = sylius_product_variant.id AND sylius_product_variant_translation.locale = "'.$defaultLocale.'")');
50
+        $this->addSql('UPDATE sylius_product_variant SET name = (SELECT name FROM sylius_product_variant_translation WHERE sylius_product_variant_translation.translatable_id = sylius_product_variant.id AND sylius_product_variant_translation.locale = "' . $defaultLocale . '")');
51 51
         $this->addSql('DROP TABLE sylius_product_variant_translation');
52 52
     }
53 53
 }
Please login to merge, or discard this patch.
app/migrations/Version20161219160441.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 
37 37
         $this->addSql('CREATE TABLE sylius_product_association_type_translation (id INT AUTO_INCREMENT NOT NULL, translatable_id INT NOT NULL, name VARCHAR(255) DEFAULT NULL, locale VARCHAR(255) NOT NULL, INDEX IDX_4F618E52C2AC5D3 (translatable_id), UNIQUE INDEX sylius_product_association_type_translation_uniq_trans (translatable_id, locale), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = InnoDB');
38 38
         $this->addSql('ALTER TABLE sylius_product_association_type_translation ADD CONSTRAINT FK_4F618E52C2AC5D3 FOREIGN KEY (translatable_id) REFERENCES sylius_product_association_type (id) ON DELETE CASCADE');
39
-        $this->addSql('INSERT INTO sylius_product_association_type_translation (translatable_id, name, locale) SELECT id, name, "'.$defaultLocale.'" from sylius_product_association_type WHERE sylius_product_association_type.name IS NOT null');
39
+        $this->addSql('INSERT INTO sylius_product_association_type_translation (translatable_id, name, locale) SELECT id, name, "' . $defaultLocale . '" from sylius_product_association_type WHERE sylius_product_association_type.name IS NOT null');
40 40
         $this->addSql('ALTER TABLE sylius_product_association_type DROP name');
41 41
     }
42 42
 
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
         $defaultLocale = $this->container->getParameter('locale');
51 51
 
52 52
         $this->addSql('ALTER TABLE sylius_product_association_type ADD name VARCHAR(255) NOT NULL COLLATE utf8_unicode_ci');
53
-        $this->addSql('UPDATE sylius_product_association_type SET name = (SELECT name FROM sylius_product_association_type_translation WHERE sylius_product_association_type_translation.translatable_id = sylius_product_association_type.id AND sylius_product_association_type_translation.locale = "'.$defaultLocale.'")');
53
+        $this->addSql('UPDATE sylius_product_association_type SET name = (SELECT name FROM sylius_product_association_type_translation WHERE sylius_product_association_type_translation.translatable_id = sylius_product_association_type.id AND sylius_product_association_type_translation.locale = "' . $defaultLocale . '")');
54 54
         $this->addSql('DROP TABLE sylius_product_association_type_translation');
55 55
     }
56 56
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Customer/ShowPage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@
 block discarded – undo
172 172
             ->getText()
173 173
         ;
174 174
 
175
-        return (int) preg_replace('/[^0-9]/', '',$overallOrders);
175
+        return (int) preg_replace('/[^0-9]/', '', $overallOrders);
176 176
     }
177 177
 
178 178
     /**
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Fixture/Factory/AddressExampleFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -223,7 +223,7 @@
 block discarded – undo
223 223
             return;
224 224
         }
225 225
 
226
-        if (null !== $options['province_name']){
226
+        if (null !== $options['province_name']) {
227 227
             $this->provideProvince($options, $address);
228 228
         }
229 229
     }
Please login to merge, or discard this patch.
tests/Controller/CurrencyApiTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
         $this->loadFixturesFromFile('authentication/api_administrator.yml');
145 145
         $currencies = $this->loadFixturesFromFile('resources/currencies.yml');
146 146
 
147
-        $this->client->request('GET', '/api/v1/currencies/'.$currencies['currency_1']->getCode(), [], [], static::$authorizedHeaderWithAccept);
147
+        $this->client->request('GET', '/api/v1/currencies/' . $currencies['currency_1']->getCode(), [], [], static::$authorizedHeaderWithAccept);
148 148
 
149 149
         $response = $this->client->getResponse();
150 150
         $this->assertResponse($response, 'currency/show_response', Response::HTTP_OK);
@@ -171,12 +171,12 @@  discard block
 block discarded – undo
171 171
         $this->loadFixturesFromFile('authentication/api_administrator.yml');
172 172
         $currencies = $this->loadFixturesFromFile('resources/currencies.yml');
173 173
 
174
-        $this->client->request('DELETE', '/api/v1/currencies/'.$currencies['currency_1']->getCode(), [], [], static::$authorizedHeaderWithContentType, []);
174
+        $this->client->request('DELETE', '/api/v1/currencies/' . $currencies['currency_1']->getCode(), [], [], static::$authorizedHeaderWithContentType, []);
175 175
 
176 176
         $response = $this->client->getResponse();
177 177
         $this->assertResponseCode($response, Response::HTTP_NO_CONTENT);
178 178
 
179
-        $this->client->request('GET', '/api/v1/currencies/'.$currencies['currency_1']->getCode(), [], [], static::$authorizedHeaderWithAccept);
179
+        $this->client->request('GET', '/api/v1/currencies/' . $currencies['currency_1']->getCode(), [], [], static::$authorizedHeaderWithAccept);
180 180
 
181 181
         $response = $this->client->getResponse();
182 182
         $this->assertResponse($response, 'error/not_found_response', Response::HTTP_NOT_FOUND);
Please login to merge, or discard this patch.
tests/Controller/ZoneApiTest.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
         $this->loadFixturesFromFile('authentication/api_administrator.yml');
148 148
         $zones = $this->loadFixturesFromFile('resources/zones.yml');
149 149
 
150
-        $this->client->request('GET', '/api/v1/zones/'.$zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithAccept);
150
+        $this->client->request('GET', '/api/v1/zones/' . $zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithAccept);
151 151
 
152 152
         $response = $this->client->getResponse();
153 153
         $this->assertResponse($response, 'zone/show_response', Response::HTTP_OK);
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
         $this->loadFixturesFromFile('resources/countries.yml');
187 187
         $zones = $this->loadFixturesFromFile('resources/zones.yml');
188 188
 
189
-        $this->client->request('PUT', '/api/v1/zones/'.$zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType);
189
+        $this->client->request('PUT', '/api/v1/zones/' . $zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType);
190 190
 
191 191
         $response = $this->client->getResponse();
192 192
         $this->assertResponse($response, 'zone/update_validation_fail_response', Response::HTTP_BAD_REQUEST);
@@ -214,12 +214,12 @@  discard block
 block discarded – undo
214 214
         }
215 215
 EOT;
216 216
 
217
-        $this->client->request('PUT', '/api/v1/zones/'.$zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType, $data);
217
+        $this->client->request('PUT', '/api/v1/zones/' . $zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType, $data);
218 218
 
219 219
         $response = $this->client->getResponse();
220 220
         $this->assertResponseCode($response, Response::HTTP_NO_CONTENT);
221 221
 
222
-        $this->client->request('GET', '/api/v1/zones/'.$zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithAccept);
222
+        $this->client->request('GET', '/api/v1/zones/' . $zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithAccept);
223 223
 
224 224
         $response = $this->client->getResponse();
225 225
         $this->assertResponse($response, 'zone/update_response', Response::HTTP_OK);
@@ -265,12 +265,12 @@  discard block
 block discarded – undo
265 265
         }
266 266
 EOT;
267 267
 
268
-        $this->client->request('PATCH', '/api/v1/zones/'.$zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType, $data);
268
+        $this->client->request('PATCH', '/api/v1/zones/' . $zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType, $data);
269 269
 
270 270
         $response = $this->client->getResponse();
271 271
         $this->assertResponseCode($response, Response::HTTP_NO_CONTENT);
272 272
 
273
-        $this->client->request('GET', '/api/v1/zones/'.$zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithAccept);
273
+        $this->client->request('GET', '/api/v1/zones/' . $zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithAccept);
274 274
 
275 275
         $response = $this->client->getResponse();
276 276
         $this->assertResponse($response, 'zone/update_response', Response::HTTP_OK);
@@ -308,12 +308,12 @@  discard block
 block discarded – undo
308 308
         $this->loadFixturesFromFile('authentication/api_administrator.yml');
309 309
         $zones = $this->loadFixturesFromFile('resources/zones.yml');
310 310
 
311
-        $this->client->request('DELETE', '/api/v1/zones/'.$zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType);
311
+        $this->client->request('DELETE', '/api/v1/zones/' . $zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType);
312 312
 
313 313
         $response = $this->client->getResponse();
314 314
         $this->assertResponseCode($response, Response::HTTP_NO_CONTENT);
315 315
 
316
-        $this->client->request('GET', '/api/v1/zones/'.$zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithAccept);
316
+        $this->client->request('GET', '/api/v1/zones/' . $zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithAccept);
317 317
 
318 318
         $response = $this->client->getResponse();
319 319
         $this->assertResponseCode($response, Response::HTTP_NOT_FOUND);
Please login to merge, or discard this patch.
tests/Controller/LocaleApiTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
         $this->loadFixturesFromFile('authentication/api_administrator.yml');
72 72
         $locales = $this->loadFixturesFromFile('resources/locales.yml');
73 73
 
74
-        $this->client->request('GET', '/api/v1/locales/'.$locales['locale_en']->getCode(), [], [], static::$authorizedHeaderWithAccept);
74
+        $this->client->request('GET', '/api/v1/locales/' . $locales['locale_en']->getCode(), [], [], static::$authorizedHeaderWithAccept);
75 75
 
76 76
         $response = $this->client->getResponse();
77 77
         $this->assertResponse($response, 'locale/show_response', Response::HTTP_OK);
@@ -157,12 +157,12 @@  discard block
 block discarded – undo
157 157
         $this->loadFixturesFromFile('authentication/api_administrator.yml');
158 158
         $locales = $this->loadFixturesFromFile('resources/locales.yml');
159 159
 
160
-        $this->client->request('DELETE', '/api/v1/locales/'.$locales['locale_en']->getCode(), [], [], static::$authorizedHeaderWithContentType, []);
160
+        $this->client->request('DELETE', '/api/v1/locales/' . $locales['locale_en']->getCode(), [], [], static::$authorizedHeaderWithContentType, []);
161 161
 
162 162
         $response = $this->client->getResponse();
163 163
         $this->assertResponseCode($response, Response::HTTP_NO_CONTENT);
164 164
 
165
-        $this->client->request('GET', '/api/v1/locales/'.$locales['locale_en']->getId(), [], [], static::$authorizedHeaderWithAccept);
165
+        $this->client->request('GET', '/api/v1/locales/' . $locales['locale_en']->getId(), [], [], static::$authorizedHeaderWithAccept);
166 166
 
167 167
         $response = $this->client->getResponse();
168 168
         $this->assertResponse($response, 'error/not_found_response', Response::HTTP_NOT_FOUND);
Please login to merge, or discard this patch.
tests/Controller/ShippingCategoryApiTest.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
         $this->loadFixturesFromFile('authentication/api_administrator.yml');
134 134
         $shippingCategories = $this->loadFixturesFromFile('resources/shipping_categories.yml');
135 135
 
136
-        $this->client->request('GET', '/api/v1/shipping-categories/'.$shippingCategories['shipping_category_1']->getId(), [], [], [
136
+        $this->client->request('GET', '/api/v1/shipping-categories/' . $shippingCategories['shipping_category_1']->getId(), [], [], [
137 137
             'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ',
138 138
             'ACCEPT' => 'application/json',
139 139
         ]);
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
         $this->loadFixturesFromFile('authentication/api_administrator.yml');
178 178
         $shippingCategories = $this->loadFixturesFromFile('resources/shipping_categories.yml');
179 179
 
180
-        $this->client->request('PUT', '/api/v1/shipping-categories/'.$shippingCategories['shipping_category_1']->getId(), [], [], [
180
+        $this->client->request('PUT', '/api/v1/shipping-categories/' . $shippingCategories['shipping_category_1']->getId(), [], [], [
181 181
             'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ',
182 182
             'CONTENT_TYPE' => 'application/json',
183 183
         ]);
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
         }
203 203
 EOT;
204 204
 
205
-        $this->client->request('PUT', '/api/v1/shipping-categories/'.$shippingCategories['shipping_category_1']->getId(), [], [], [
205
+        $this->client->request('PUT', '/api/v1/shipping-categories/' . $shippingCategories['shipping_category_1']->getId(), [], [], [
206 206
             'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ',
207 207
             'CONTENT_TYPE' => 'application/json',
208 208
         ], $data);
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
         $response = $this->client->getResponse();
211 211
         $this->assertResponseCode($response, Response::HTTP_NO_CONTENT);
212 212
 
213
-        $this->client->request('GET', '/api/v1/shipping-categories/'.$shippingCategories['shipping_category_1']->getId(), [], [], [
213
+        $this->client->request('GET', '/api/v1/shipping-categories/' . $shippingCategories['shipping_category_1']->getId(), [], [], [
214 214
             'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ',
215 215
             'ACCEPT' => 'application/json',
216 216
         ]);
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
         }
252 252
 EOT;
253 253
 
254
-        $this->client->request('PATCH', '/api/v1/shipping-categories/'.$shippingCategories['shipping_category_1']->getId(), [], [], [
254
+        $this->client->request('PATCH', '/api/v1/shipping-categories/' . $shippingCategories['shipping_category_1']->getId(), [], [], [
255 255
             'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ',
256 256
             'CONTENT_TYPE' => 'application/json',
257 257
         ], $data);
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
         $response = $this->client->getResponse();
260 260
         $this->assertResponseCode($response, Response::HTTP_NO_CONTENT);
261 261
 
262
-        $this->client->request('GET', '/api/v1/shipping-categories/'.$shippingCategories['shipping_category_1']->getId(), [], [], [
262
+        $this->client->request('GET', '/api/v1/shipping-categories/' . $shippingCategories['shipping_category_1']->getId(), [], [], [
263 263
             'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ',
264 264
             'ACCEPT' => 'application/json',
265 265
         ]);
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
         $this->loadFixturesFromFile('authentication/api_administrator.yml');
293 293
         $shippingCategories = $this->loadFixturesFromFile('resources/shipping_categories.yml');
294 294
 
295
-        $this->client->request('DELETE', '/api/v1/shipping-categories/'.$shippingCategories['shipping_category_1']->getId(), [], [], [
295
+        $this->client->request('DELETE', '/api/v1/shipping-categories/' . $shippingCategories['shipping_category_1']->getId(), [], [], [
296 296
             'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ',
297 297
             'CONTENT_TYPE' => 'application/json',
298 298
         ], []);
@@ -300,7 +300,7 @@  discard block
 block discarded – undo
300 300
         $response = $this->client->getResponse();
301 301
         $this->assertResponseCode($response, Response::HTTP_NO_CONTENT);
302 302
 
303
-        $this->client->request('GET', '/api/v1/shipping-categories/'.$shippingCategories['shipping_category_1']->getId(), [], [], [
303
+        $this->client->request('GET', '/api/v1/shipping-categories/' . $shippingCategories['shipping_category_1']->getId(), [], [], [
304 304
             'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ',
305 305
             'ACCEPT' => 'application/json',
306 306
         ]);
Please login to merge, or discard this patch.