| @@ -26,12 +26,12 @@ | ||
| 26 | 26 |      require ini_get('auto_prepend_file'); | 
| 27 | 27 | } | 
| 28 | 28 | |
| 29 | -if (is_file($_SERVER['DOCUMENT_ROOT'].DIRECTORY_SEPARATOR.$_SERVER['SCRIPT_NAME'])) { | |
| 29 | +if (is_file($_SERVER['DOCUMENT_ROOT'] . DIRECTORY_SEPARATOR . $_SERVER['SCRIPT_NAME'])) { | |
| 30 | 30 | return false; | 
| 31 | 31 | } | 
| 32 | 32 | |
| 33 | 33 | $_SERVER = array_merge($_SERVER, $_ENV); | 
| 34 | -$_SERVER['SCRIPT_FILENAME'] = $_SERVER['DOCUMENT_ROOT'].DIRECTORY_SEPARATOR.'app_test_cached.php'; | |
| 34 | +$_SERVER['SCRIPT_FILENAME'] = $_SERVER['DOCUMENT_ROOT'] . DIRECTORY_SEPARATOR . 'app_test_cached.php'; | |
| 35 | 35 | |
| 36 | 36 | require 'app_test_cached.php'; | 
| 37 | 37 | |
| @@ -969,7 +969,7 @@ discard block | ||
| 969 | 969 | ], | 
| 970 | 970 | ]; | 
| 971 | 971 |          $routeFactory->createRoute('/products/new', $createDefaults, [], [], '', [], ['GET', 'POST']) | 
| 972 | - ->willReturn($createRoute); | |
| 972 | + ->willReturn($createRoute); | |
| 973 | 973 |          $routeCollection->add('sylius_product_create', $createRoute)->shouldBeCalled(); | 
| 974 | 974 | |
| 975 | 975 | $updateDefaults = [ | 
| @@ -979,7 +979,7 @@ discard block | ||
| 979 | 979 | ], | 
| 980 | 980 | ]; | 
| 981 | 981 |          $routeFactory->createRoute('/products/{id}/edit', $updateDefaults, [], [], '', [], ['GET', 'PUT', 'PATCH']) | 
| 982 | - ->willReturn($updateRoute); | |
| 982 | + ->willReturn($updateRoute); | |
| 983 | 983 |          $routeCollection->add('sylius_product_update', $updateRoute)->shouldBeCalled(); | 
| 984 | 984 | |
| 985 | 985 | $deleteDefaults = [ | 
| @@ -989,7 +989,7 @@ discard block | ||
| 989 | 989 | ], | 
| 990 | 990 | ]; | 
| 991 | 991 |          $routeFactory->createRoute('/products/{id}', $deleteDefaults, [], [], '', [], ['DELETE']) | 
| 992 | - ->willReturn($deleteRoute); | |
| 992 | + ->willReturn($deleteRoute); | |
| 993 | 993 |          $routeCollection->add('sylius_product_delete', $deleteRoute)->shouldBeCalled(); | 
| 994 | 994 | |
| 995 | 995 | $this->load($configuration, 'sylius.resource')->shouldReturn($routeCollection); | 
| @@ -9,7 +9,7 @@ | ||
| 9 | 9 | * file that was distributed with this source code. | 
| 10 | 10 | */ | 
| 11 | 11 | |
| 12 | -declare(strict_types=1); | |
| 12 | +declare(strict_types = 1); | |
| 13 | 13 | |
| 14 | 14 | namespace spec\Sylius\Bundle\ResourceBundle\Routing; | 
| 15 | 15 | |
| @@ -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 | } | 
| @@ -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 | /** | 
| @@ -76,7 +76,7 @@ | ||
| 76 | 76 |          $objects = $this->loadFixturesFromFile('books.yml'); | 
| 77 | 77 | |
| 78 | 78 | $data = | 
| 79 | - <<<EOT | |
| 79 | + <<<EOT | |
| 80 | 80 |          { | 
| 81 | 81 | "author": "Christie Golden" | 
| 82 | 82 | } | 
| @@ -9,7 +9,7 @@ | ||
| 9 | 9 | * file that was distributed with this source code. | 
| 10 | 10 | */ | 
| 11 | 11 | |
| 12 | -declare(strict_types=1); | |
| 12 | +declare(strict_types = 1); | |
| 13 | 13 | /* | 
| 14 | 14 | * This file is part of the Sylius package. | 
| 15 | 15 | * | 
| @@ -85,7 +85,7 @@ | ||
| 85 | 85 |          $objects = $this->loadFixturesFromFile('comic_books.yml'); | 
| 86 | 86 | |
| 87 | 87 | $data = | 
| 88 | - <<<EOT | |
| 88 | + <<<EOT | |
| 89 | 89 |          { | 
| 90 | 90 | "authorFirstName": "Joe", | 
| 91 | 91 | "authorLastName": "Kelly" | 
| @@ -9,7 +9,7 @@ | ||
| 9 | 9 | * file that was distributed with this source code. | 
| 10 | 10 | */ | 
| 11 | 11 | |
| 12 | -declare(strict_types=1); | |
| 12 | +declare(strict_types = 1); | |
| 13 | 13 | /* | 
| 14 | 14 | * This file is part of the Sylius package. | 
| 15 | 15 | * | 
| @@ -9,7 +9,7 @@ | ||
| 9 | 9 | * file that was distributed with this source code. | 
| 10 | 10 | */ | 
| 11 | 11 | |
| 12 | -declare(strict_types=1); | |
| 12 | +declare(strict_types = 1); | |
| 13 | 13 | |
| 14 | 14 | namespace Sylius\Tests\Controller; | 
| 15 | 15 | |
| @@ -9,7 +9,7 @@ | ||
| 9 | 9 | * file that was distributed with this source code. | 
| 10 | 10 | */ | 
| 11 | 11 | |
| 12 | -declare(strict_types=1); | |
| 12 | +declare(strict_types = 1); | |
| 13 | 13 | |
| 14 | 14 | use Symfony\Bundle\FrameworkBundle\HttpCache\HttpCache; | 
| 15 | 15 | |