@@ -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 | /** |
@@ -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 | /** |
@@ -56,6 +56,6 @@ |
||
| 56 | 56 | return $data['date']; |
| 57 | 57 | } |
| 58 | 58 | |
| 59 | - return $data['date'].' '.$data['time']; |
|
| 59 | + return $data['date'] . ' ' . $data['time']; |
|
| 60 | 60 | } |
| 61 | 61 | } |
@@ -166,7 +166,7 @@ |
||
| 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 | /** |
@@ -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 | } |
@@ -172,7 +172,7 @@ |
||
| 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 | /** |
@@ -223,7 +223,7 @@ |
||
| 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 | } |
@@ -144,7 +144,7 @@ discard block |
||
| 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 |
||
| 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); |