@@ -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 | } |
@@ -429,6 +429,8 @@ |
||
429 | 429 | } |
430 | 430 | |
431 | 431 | /** |
432 | + * @param integer $timeout |
|
433 | + * @param string $elementName |
|
432 | 434 | * @return bool |
433 | 435 | */ |
434 | 436 | private function waitForElement($timeout, $elementName) |
@@ -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\Behat\Page\Shop\Checkout; |
15 | 15 |
@@ -16,13 +16,13 @@ |
||
16 | 16 | use Sylius\Behat\NotificationType; |
17 | 17 | use Sylius\Behat\Page\Admin\Crud\CreatePageInterface; |
18 | 18 | use Sylius\Behat\Page\Admin\Crud\UpdatePageInterface; |
19 | +use Sylius\Behat\Page\Admin\ProductReview\IndexPageInterface as ProductReviewIndexPageInterface; |
|
19 | 20 | use Sylius\Behat\Page\Admin\Product\CreateConfigurableProductPageInterface; |
20 | 21 | use Sylius\Behat\Page\Admin\Product\CreateSimpleProductPageInterface; |
21 | 22 | use Sylius\Behat\Page\Admin\Product\IndexPageInterface; |
22 | 23 | use Sylius\Behat\Page\Admin\Product\IndexPerTaxonPageInterface; |
23 | 24 | use Sylius\Behat\Page\Admin\Product\UpdateConfigurableProductPageInterface; |
24 | 25 | use Sylius\Behat\Page\Admin\Product\UpdateSimpleProductPageInterface; |
25 | -use Sylius\Behat\Page\Admin\ProductReview\IndexPageInterface as ProductReviewIndexPageInterface; |
|
26 | 26 | use Sylius\Behat\Page\SymfonyPageInterface; |
27 | 27 | use Sylius\Behat\Service\NotificationCheckerInterface; |
28 | 28 | use Sylius\Behat\Service\Resolver\CurrentPageResolverInterface; |
@@ -248,6 +248,7 @@ |
||
248 | 248 | * @Then the product :productName should appear in the store |
249 | 249 | * @Then the product :productName should be in the shop |
250 | 250 | * @Then this product should still be named :productName |
251 | + * @param string $productName |
|
251 | 252 | */ |
252 | 253 | public function theProductShouldAppearInTheShop($productName) |
253 | 254 | { |
@@ -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\Behat\Context\Ui\Admin; |
15 | 15 |
@@ -46,7 +46,8 @@ discard block |
||
46 | 46 | $this->getAllOrdersCount()->shouldReturn(0); |
47 | 47 | } |
48 | 48 | |
49 | - function it_has_number_of_all_orders(ChannelInterface $channel) { |
|
49 | + function it_has_number_of_all_orders(ChannelInterface $channel) |
|
50 | + { |
|
50 | 51 | $firstStatistics = new PerChannelCustomerStatistics(110, 120, $channel->getWrappedObject()); |
51 | 52 | $secondStatistics = new PerChannelCustomerStatistics(13, 120, $channel->getWrappedObject()); |
52 | 53 | |
@@ -55,7 +56,8 @@ discard block |
||
55 | 56 | $this->getAllOrdersCount()->shouldReturn(123); |
56 | 57 | } |
57 | 58 | |
58 | - function it_has_an_array_of_statistics_per_channel(ChannelInterface $channel) { |
|
59 | + function it_has_an_array_of_statistics_per_channel(ChannelInterface $channel) |
|
60 | + { |
|
59 | 61 | $firstStatistics = new PerChannelCustomerStatistics(110, 120, $channel->getWrappedObject()); |
60 | 62 | $secondStatistics = new PerChannelCustomerStatistics(13, 120, $channel->getWrappedObject()); |
61 | 63 |
@@ -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\Component\Core\Customer\Statistics; |
15 | 15 |
@@ -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 | } |
@@ -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" |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | "authorFirstName": "Joe", |
32 | 32 | "authorLastName": "Kelly" |
33 | 33 | } |
34 | -EOT; |
|
34 | +eot; |
|
35 | 35 | |
36 | 36 | $this->client->request('POST', '/v1/comic-books/', [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
37 | 37 | $response = $this->client->getResponse(); |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | "authorFirstName": "Joe", |
50 | 50 | "authorLastName": "Kelly" |
51 | 51 | } |
52 | -EOT; |
|
52 | +eot; |
|
53 | 53 | |
54 | 54 | $this->client->request('POST', '/v1.2/comic-books/', [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
55 | 55 | $response = $this->client->getResponse(); |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | "authorFirstName": "Joe", |
71 | 71 | "authorLastName": "Kelly" |
72 | 72 | } |
73 | -EOT; |
|
73 | +eot; |
|
74 | 74 | |
75 | 75 | $this->client->request('PUT', '/v1/comic-books/'. $objects["comic-book1"]->getId(), [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
76 | 76 | $response = $this->client->getResponse(); |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | "authorFirstName": "Joe", |
91 | 91 | "authorLastName": "Kelly" |
92 | 92 | } |
93 | -EOT; |
|
93 | +eot; |
|
94 | 94 | |
95 | 95 | $this->client->request('PATCH', '/v1/comic-books/'. $objects["comic-book1"]->getId(), [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
96 | 96 | $response = $this->client->getResponse(); |
@@ -505,6 +505,7 @@ |
||
505 | 505 | |
506 | 506 | /** |
507 | 507 | * {@inheritdoc} |
508 | + * @param string $localeCode |
|
508 | 509 | */ |
509 | 510 | private function getAttributeInDifferentLocale(ProductAttributeValueInterface $attributeValue, $localeCode) |
510 | 511 | { |
@@ -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\Component\Product\Model; |
15 | 15 |
@@ -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 | /** |
@@ -15,8 +15,8 @@ |
||
15 | 15 | use Sylius\Component\Product\Model\ProductOptionValueInterface; |
16 | 16 | use Sylius\Component\Product\Model\ProductVariantInterface; |
17 | 17 | use Symfony\Component\Form\DataTransformerInterface; |
18 | -use Symfony\Component\Form\Exception\UnexpectedTypeException; |
|
19 | 18 | use Symfony\Component\Form\Exception\TransformationFailedException; |
19 | +use Symfony\Component\Form\Exception\UnexpectedTypeException; |
|
20 | 20 | |
21 | 21 | /** |
22 | 22 | * @author Paweł Jędrzejewski <[email protected]> |
@@ -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\Bundle\ProductBundle\Form\DataTransformer; |
15 | 15 |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | protected $data; |
41 | 41 | |
42 | 42 | /** |
43 | - * @param mixed $message |
|
43 | + * @param \Swift_Message $message |
|
44 | 44 | * @param array $recipients |
45 | 45 | * @param EmailInterface $email |
46 | 46 | * @param array $data |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | } |
55 | 55 | |
56 | 56 | /** |
57 | - * @return array |
|
57 | + * @return string[] |
|
58 | 58 | */ |
59 | 59 | public function getRecipients() |
60 | 60 | { |
@@ -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\Component\Mailer\Event; |
15 | 15 |