@@ -44,7 +44,7 @@ |
||
| 44 | 44 | */ |
| 45 | 45 | public function registerContainerConfiguration(LoaderInterface $loader) |
| 46 | 46 | { |
| 47 | - $loader->load(__DIR__.'/config/config.yml'); |
|
| 47 | + $loader->load(__DIR__ . '/config/config.yml'); |
|
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | /** |
@@ -33,7 +33,7 @@ discard block |
||
| 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 |
||
| 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 | } |
@@ -36,7 +36,7 @@ discard block |
||
| 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 |
||
| 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 | } |
@@ -187,7 +187,7 @@ discard block |
||
| 187 | 187 | $this->loadFixturesFromFile('authentication/api_administrator.yml'); |
| 188 | 188 | $customers = $this->loadFixturesFromFile('resources/customers.yml'); |
| 189 | 189 | |
| 190 | - $this->client->request('GET', '/api/v1/customers/'.$customers['customer_Barry']->getId(), [], [], static::$authorizedHeaderWithAccept); |
|
| 190 | + $this->client->request('GET', '/api/v1/customers/' . $customers['customer_Barry']->getId(), [], [], static::$authorizedHeaderWithAccept); |
|
| 191 | 191 | |
| 192 | 192 | $response = $this->client->getResponse(); |
| 193 | 193 | $this->assertResponse($response, 'customer/show_response', Response::HTTP_OK); |
@@ -201,7 +201,7 @@ discard block |
||
| 201 | 201 | $this->loadFixturesFromFile('authentication/api_administrator.yml'); |
| 202 | 202 | $customers = $this->loadFixturesFromFile('resources/customers.yml'); |
| 203 | 203 | |
| 204 | - $this->client->request('GET', '/api/v1/customers/'.$customers['customer_Roy']->getId(), [], [], static::$authorizedHeaderWithAccept); |
|
| 204 | + $this->client->request('GET', '/api/v1/customers/' . $customers['customer_Roy']->getId(), [], [], static::$authorizedHeaderWithAccept); |
|
| 205 | 205 | |
| 206 | 206 | $response = $this->client->getResponse(); |
| 207 | 207 | $this->assertResponse($response, 'customer/show_with_user_response', Response::HTTP_OK); |
@@ -239,7 +239,7 @@ discard block |
||
| 239 | 239 | $this->loadFixturesFromFile('authentication/api_administrator.yml'); |
| 240 | 240 | $customers = $this->loadFixturesFromFile('resources/customers.yml'); |
| 241 | 241 | |
| 242 | - $this->client->request('PUT', '/api/v1/customers/'.$customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithContentType); |
|
| 242 | + $this->client->request('PUT', '/api/v1/customers/' . $customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithContentType); |
|
| 243 | 243 | |
| 244 | 244 | $response = $this->client->getResponse(); |
| 245 | 245 | $this->assertResponse($response, 'customer/update_validation_fail_response', Response::HTTP_BAD_REQUEST); |
@@ -263,12 +263,12 @@ discard block |
||
| 263 | 263 | } |
| 264 | 264 | EOT; |
| 265 | 265 | |
| 266 | - $this->client->request('PUT', '/api/v1/customers/'.$customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithContentType, $data); |
|
| 266 | + $this->client->request('PUT', '/api/v1/customers/' . $customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithContentType, $data); |
|
| 267 | 267 | |
| 268 | 268 | $response = $this->client->getResponse(); |
| 269 | 269 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
| 270 | 270 | |
| 271 | - $this->client->request('GET', '/api/v1/customers/'.$customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithAccept); |
|
| 271 | + $this->client->request('GET', '/api/v1/customers/' . $customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithAccept); |
|
| 272 | 272 | |
| 273 | 273 | $response = $this->client->getResponse(); |
| 274 | 274 | $this->assertResponse($response, 'customer/update_response', Response::HTTP_OK); |
@@ -303,12 +303,12 @@ discard block |
||
| 303 | 303 | } |
| 304 | 304 | EOT; |
| 305 | 305 | |
| 306 | - $this->client->request('PATCH', '/api/v1/customers/'.$customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithContentType, $data); |
|
| 306 | + $this->client->request('PATCH', '/api/v1/customers/' . $customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithContentType, $data); |
|
| 307 | 307 | |
| 308 | 308 | $response = $this->client->getResponse(); |
| 309 | 309 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
| 310 | 310 | |
| 311 | - $this->client->request('GET', '/api/v1/customers/'.$customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithAccept); |
|
| 311 | + $this->client->request('GET', '/api/v1/customers/' . $customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithAccept); |
|
| 312 | 312 | |
| 313 | 313 | $response = $this->client->getResponse(); |
| 314 | 314 | $this->assertResponse($response, 'customer/partial_update_response', Response::HTTP_OK); |
@@ -346,12 +346,12 @@ discard block |
||
| 346 | 346 | $this->loadFixturesFromFile('authentication/api_administrator.yml'); |
| 347 | 347 | $customers = $this->loadFixturesFromFile('resources/customers.yml'); |
| 348 | 348 | |
| 349 | - $this->client->request('DELETE', '/api/v1/customers/'.$customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithContentType); |
|
| 349 | + $this->client->request('DELETE', '/api/v1/customers/' . $customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithContentType); |
|
| 350 | 350 | |
| 351 | 351 | $response = $this->client->getResponse(); |
| 352 | 352 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
| 353 | 353 | |
| 354 | - $this->client->request('GET', '/api/v1/customers/'.$customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithAccept); |
|
| 354 | + $this->client->request('GET', '/api/v1/customers/' . $customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithAccept); |
|
| 355 | 355 | |
| 356 | 356 | $response = $this->client->getResponse(); |
| 357 | 357 | $this->assertResponse($response, 'error/not_found_response', Response::HTTP_NOT_FOUND); |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | $this->loadFixturesFromFile('authentication/api_administrator.yml'); |
| 47 | 47 | $countryData = $this->loadFixturesFromFile('resources/countries.yml'); |
| 48 | 48 | |
| 49 | - $this->client->request('GET', '/api/v1/countries/'.$countryData['country_BE']->getCode().'/provinces/'.$countryData['province_BE_limburg']->getCode(), [], [], static::$authorizedHeaderWithContentType); |
|
| 49 | + $this->client->request('GET', '/api/v1/countries/' . $countryData['country_BE']->getCode() . '/provinces/' . $countryData['province_BE_limburg']->getCode(), [], [], static::$authorizedHeaderWithContentType); |
|
| 50 | 50 | |
| 51 | 51 | $response = $this->client->getResponse(); |
| 52 | 52 | $this->assertResponse($response, 'province/show_response', Response::HTTP_OK); |
@@ -60,12 +60,12 @@ discard block |
||
| 60 | 60 | $this->loadFixturesFromFile('authentication/api_administrator.yml'); |
| 61 | 61 | $countryData = $this->loadFixturesFromFile('resources/countries.yml'); |
| 62 | 62 | |
| 63 | - $this->client->request('DELETE', '/api/v1/countries/'.$countryData['country_BE']->getCode().'/provinces/'.$countryData['province_BE_limburg']->getCode(), [], [], static::$authorizedHeaderWithContentType); |
|
| 63 | + $this->client->request('DELETE', '/api/v1/countries/' . $countryData['country_BE']->getCode() . '/provinces/' . $countryData['province_BE_limburg']->getCode(), [], [], static::$authorizedHeaderWithContentType); |
|
| 64 | 64 | |
| 65 | 65 | $response = $this->client->getResponse(); |
| 66 | 66 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
| 67 | 67 | |
| 68 | - $this->client->request('GET', '/api/v1/countries/'.$countryData['country_BE']->getCode().'/provinces/'.$countryData['province_BE_limburg']->getCode(), [], [], static::$authorizedHeaderWithContentType); |
|
| 68 | + $this->client->request('GET', '/api/v1/countries/' . $countryData['country_BE']->getCode() . '/provinces/' . $countryData['province_BE_limburg']->getCode(), [], [], static::$authorizedHeaderWithContentType); |
|
| 69 | 69 | |
| 70 | 70 | $response = $this->client->getResponse(); |
| 71 | 71 | $this->assertResponse($response, 'error/not_found_response', Response::HTTP_NOT_FOUND); |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | } |
| 73 | 73 | EOT; |
| 74 | 74 | |
| 75 | - $this->client->request('PUT', '/v1/comic-books/'. $objects["comic-book1"]->getId(), [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
|
| 75 | + $this->client->request('PUT', '/v1/comic-books/' . $objects["comic-book1"]->getId(), [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
|
| 76 | 76 | $response = $this->client->getResponse(); |
| 77 | 77 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
| 78 | 78 | } |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | } |
| 93 | 93 | EOT; |
| 94 | 94 | |
| 95 | - $this->client->request('PATCH', '/v1/comic-books/'. $objects["comic-book1"]->getId(), [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
|
| 95 | + $this->client->request('PATCH', '/v1/comic-books/' . $objects["comic-book1"]->getId(), [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
|
| 96 | 96 | $response = $this->client->getResponse(); |
| 97 | 97 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
| 98 | 98 | } |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | { |
| 105 | 105 | $objects = $this->loadFixturesFromFile('comic_books.yml'); |
| 106 | 106 | |
| 107 | - $this->client->request('DELETE', '/v1/comic-books/'. $objects["comic-book1"]->getId()); |
|
| 107 | + $this->client->request('DELETE', '/v1/comic-books/' . $objects["comic-book1"]->getId()); |
|
| 108 | 108 | $response = $this->client->getResponse(); |
| 109 | 109 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
| 110 | 110 | } |
@@ -116,7 +116,7 @@ discard block |
||
| 116 | 116 | { |
| 117 | 117 | $objects = $this->loadFixturesFromFile('comic_books.yml'); |
| 118 | 118 | |
| 119 | - $this->client->request('GET', '/v1/comic-books/'. $objects["comic-book1"]->getId()); |
|
| 119 | + $this->client->request('GET', '/v1/comic-books/' . $objects["comic-book1"]->getId()); |
|
| 120 | 120 | $response = $this->client->getResponse(); |
| 121 | 121 | $this->assertResponse($response, 'comic-books/show_response'); |
| 122 | 122 | } |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | { |
| 129 | 129 | $objects = $this->loadFixturesFromFile('comic_books.yml'); |
| 130 | 130 | |
| 131 | - $this->client->request('GET', '/v1.2/comic-books/'. $objects["comic-book1"]->getId()); |
|
| 131 | + $this->client->request('GET', '/v1.2/comic-books/' . $objects["comic-book1"]->getId()); |
|
| 132 | 132 | $response = $this->client->getResponse(); |
| 133 | 133 | $this->assertResponse($response, 'comic-books/versioned_show_response'); |
| 134 | 134 | } |
@@ -35,7 +35,7 @@ |
||
| 35 | 35 | $defaultLocale = $this->container->getParameter('locale'); |
| 36 | 36 | |
| 37 | 37 | $this->addSql('ALTER TABLE sylius_product_attribute_value ADD locale_code VARCHAR(255) NOT NULL'); |
| 38 | - $this->addSql('UPDATE sylius_product_attribute_value SET locale_code = "'.$defaultLocale.'"'); |
|
| 38 | + $this->addSql('UPDATE sylius_product_attribute_value SET locale_code = "' . $defaultLocale . '"'); |
|
| 39 | 39 | } |
| 40 | 40 | |
| 41 | 41 | /** |
@@ -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 | } |
@@ -27,7 +27,7 @@ |
||
| 27 | 27 | public function load(array $config, ContainerBuilder $container) |
| 28 | 28 | { |
| 29 | 29 | $config = $this->processConfiguration($this->getConfiguration([], $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 | $loader->load(sprintf('services/integrations/%s.xml', $config['driver'])); |