@@ -222,7 +222,8 @@ |
||
222 | 222 | * |
223 | 223 | * @return \Generator |
224 | 224 | */ |
225 | - private function createGenerator(Collaborator ...$collaborators) { |
|
225 | + private function createGenerator(Collaborator ...$collaborators) |
|
226 | + { |
|
226 | 227 | foreach ($collaborators as $collaborator) { |
227 | 228 | yield $collaborator->getWrappedObject() => []; |
228 | 229 | } |
@@ -13,7 +13,6 @@ |
||
13 | 13 | |
14 | 14 | use PhpSpec\ObjectBehavior; |
15 | 15 | use PhpSpec\Wrapper\Collaborator; |
16 | -use Prophecy\Argument; |
|
17 | 16 | use Sylius\Bundle\FixturesBundle\Fixture\FixtureInterface; |
18 | 17 | use Sylius\Bundle\FixturesBundle\Fixture\FixtureRegistryInterface; |
19 | 18 | use Sylius\Bundle\FixturesBundle\Listener\ListenerInterface; |
@@ -31,10 +31,19 @@ |
||
31 | 31 | */ |
32 | 32 | public function isAvailableInChannel($channelName); |
33 | 33 | |
34 | + /** |
|
35 | + * @return void |
|
36 | + */ |
|
34 | 37 | public function enable(); |
35 | 38 | |
39 | + /** |
|
40 | + * @return void |
|
41 | + */ |
|
36 | 42 | public function disable(); |
37 | 43 | |
44 | + /** |
|
45 | + * @return void |
|
46 | + */ |
|
38 | 47 | public function removeZone(); |
39 | 48 | |
40 | 49 | /** |
@@ -20,6 +20,7 @@ discard block |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param string $shippingMethod |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function selectShippingMethod($shippingMethod); |
25 | 26 | |
@@ -48,14 +49,23 @@ discard block |
||
48 | 49 | */ |
49 | 50 | public function getItemSubtotal($itemName); |
50 | 51 | |
52 | + /** |
|
53 | + * @return void |
|
54 | + */ |
|
51 | 55 | public function nextStep(); |
52 | 56 | |
57 | + /** |
|
58 | + * @return void |
|
59 | + */ |
|
53 | 60 | public function changeAddress(); |
54 | 61 | |
62 | + /** |
|
63 | + * @return void |
|
64 | + */ |
|
55 | 65 | public function changeAddressByStepLabel(); |
56 | 66 | |
57 | 67 | /** |
58 | - * @return mixed string |
|
68 | + * @return string string |
|
59 | 69 | */ |
60 | 70 | public function getPurchaserEmail(); |
61 | 71 |
@@ -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 | /** |
@@ -225,6 +225,7 @@ discard block |
||
225 | 225 | |
226 | 226 | /** |
227 | 227 | * @Then the :productVariantCode variant of the :product product should appear in the store |
228 | + * @param string $productVariantCode |
|
228 | 229 | */ |
229 | 230 | public function theProductVariantShouldAppearInTheShop($productVariantCode, ProductInterface $product) |
230 | 231 | { |
@@ -763,7 +764,7 @@ discard block |
||
763 | 764 | |
764 | 765 | /** |
765 | 766 | * @param string $element |
766 | - * @param $message |
|
767 | + * @param string $message |
|
767 | 768 | */ |
768 | 769 | private function assertValidationMessage($element, $message) |
769 | 770 | { |
@@ -129,7 +129,6 @@ |
||
129 | 129 | } |
130 | 130 | |
131 | 131 | /** |
132 | - * @param PromotionDynamicTypeInterface|null $type |
|
133 | 132 | * @param FormInterface $form |
134 | 133 | * |
135 | 134 | * @return null|string |
@@ -106,7 +106,7 @@ |
||
106 | 106 | * @param PaymentInterface $payment |
107 | 107 | * @param OrderInterface $order |
108 | 108 | * |
109 | - * @return PaymentMethodInterface|null |
|
109 | + * @return \Sylius\Component\Payment\Model\PaymentMethodInterface|null |
|
110 | 110 | */ |
111 | 111 | private function getDefaultPaymentMethod(PaymentInterface $payment, OrderInterface $order) |
112 | 112 | { |
@@ -81,7 +81,7 @@ |
||
81 | 81 | |
82 | 82 | /** |
83 | 83 | * @param string $field |
84 | - * @param mixed $value |
|
84 | + * @param string $value |
|
85 | 85 | * |
86 | 86 | * @return self |
87 | 87 | */ |
@@ -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 | } |
@@ -18,67 +18,85 @@ |
||
18 | 18 | */ |
19 | 19 | interface CreatePageInterface extends BaseCreatePageInterface |
20 | 20 | { |
21 | + /** |
|
22 | + * @return void |
|
23 | + */ |
|
21 | 24 | public function enable(); |
22 | 25 | |
26 | + /** |
|
27 | + * @return void |
|
28 | + */ |
|
23 | 29 | public function disable(); |
24 | 30 | |
25 | 31 | /** |
26 | 32 | * @param string $name |
33 | + * @return void |
|
27 | 34 | */ |
28 | 35 | public function nameIt($name); |
29 | 36 | |
30 | 37 | /** |
31 | 38 | * @param string $code |
39 | + * @return void |
|
32 | 40 | */ |
33 | 41 | public function specifyCode($code); |
34 | 42 | |
35 | 43 | /** |
36 | 44 | * @param string $description |
45 | + * @return void |
|
37 | 46 | */ |
38 | 47 | public function describeItAs($description); |
39 | 48 | |
40 | 49 | /** |
41 | 50 | * @param string $hostname |
51 | + * @return void |
|
42 | 52 | */ |
43 | 53 | public function setHostname($hostname); |
44 | 54 | |
45 | 55 | /** |
46 | 56 | * @param string $contactEmail |
57 | + * @return void |
|
47 | 58 | */ |
48 | 59 | public function setContactEmail($contactEmail); |
49 | 60 | |
50 | 61 | /** |
51 | 62 | * @param string $color |
63 | + * @return void |
|
52 | 64 | */ |
53 | 65 | public function defineColor($color); |
54 | 66 | |
55 | 67 | /** |
56 | 68 | * @param string $language |
69 | + * @return void |
|
57 | 70 | */ |
58 | 71 | public function chooseLocale($language); |
59 | 72 | |
60 | 73 | /** |
61 | 74 | * @param string $currencyCode |
75 | + * @return void |
|
62 | 76 | */ |
63 | 77 | public function chooseCurrency($currencyCode); |
64 | 78 | |
65 | 79 | /** |
66 | 80 | * @param string $taxZone |
81 | + * @return void |
|
67 | 82 | */ |
68 | 83 | public function chooseDefaultTaxZone($taxZone); |
69 | 84 | |
70 | 85 | /** |
71 | 86 | * @param string $locale |
87 | + * @return void |
|
72 | 88 | */ |
73 | 89 | public function chooseDefaultLocale($locale); |
74 | 90 | |
75 | 91 | /** |
76 | 92 | * @param string $currency |
93 | + * @return void |
|
77 | 94 | */ |
78 | 95 | public function chooseBaseCurrency($currency); |
79 | 96 | |
80 | 97 | /** |
81 | 98 | * @param string $taxCalculationStrategy |
99 | + * @return void |
|
82 | 100 | */ |
83 | 101 | public function chooseTaxCalculationStrategy($taxCalculationStrategy); |
84 | 102 | } |