@@ -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 | /** |
@@ -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 | } |
@@ -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) |
@@ -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,15 +25,20 @@ |
||
25 | 25 | */ |
26 | 26 | public function hasValidationErrorWith($message); |
27 | 27 | |
28 | + /** |
|
29 | + * @return void |
|
30 | + */ |
|
28 | 31 | public function logIn(); |
29 | 32 | |
30 | 33 | /** |
31 | 34 | * @param string $password |
35 | + * @return void |
|
32 | 36 | */ |
33 | 37 | public function specifyPassword($password); |
34 | 38 | |
35 | 39 | /** |
36 | 40 | * @param string $username |
41 | + * @return void |
|
37 | 42 | */ |
38 | 43 | public function specifyUsername($username); |
39 | 44 | } |
@@ -20,21 +20,25 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param string $username |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function changeUsername($username); |
25 | 26 | |
26 | 27 | /** |
27 | 28 | * @param string $email |
29 | + * @return void |
|
28 | 30 | */ |
29 | 31 | public function changeEmail($email); |
30 | 32 | |
31 | 33 | /** |
32 | 34 | * @param string $password |
35 | + * @return void |
|
33 | 36 | */ |
34 | 37 | public function changePassword($password); |
35 | 38 | |
36 | 39 | /** |
37 | 40 | * @param string $localeCode |
41 | + * @return void |
|
38 | 42 | */ |
39 | 43 | public function changeLocale($localeCode); |
40 | 44 | } |
@@ -20,39 +20,49 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param string $name |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function specifyFirstName($name); |
25 | 26 | |
26 | 27 | /** |
27 | 28 | * @param string $name |
29 | + * @return void |
|
28 | 30 | */ |
29 | 31 | public function specifyLastName($name); |
30 | 32 | |
31 | 33 | /** |
32 | 34 | * @param string $email |
35 | + * @return void |
|
33 | 36 | */ |
34 | 37 | public function specifyEmail($email); |
35 | 38 | |
36 | 39 | /** |
37 | 40 | * @param string $birthday |
41 | + * @return void |
|
38 | 42 | */ |
39 | 43 | public function specifyBirthday($birthday); |
40 | 44 | |
41 | 45 | /** |
42 | 46 | * @param string $password |
47 | + * @return void |
|
43 | 48 | */ |
44 | 49 | public function specifyPassword($password); |
45 | 50 | |
46 | 51 | /** |
47 | 52 | * @param string $gender |
53 | + * @return void |
|
48 | 54 | */ |
49 | 55 | public function chooseGender($gender); |
50 | 56 | |
51 | 57 | /** |
52 | 58 | * @param string $group |
59 | + * @return void |
|
53 | 60 | */ |
54 | 61 | public function chooseGroup($group); |
55 | 62 | |
63 | + /** |
|
64 | + * @return void |
|
65 | + */ |
|
56 | 66 | public function selectCreateAccount(); |
57 | 67 | |
58 | 68 | /** |
@@ -26,6 +26,7 @@ discard block |
||
26 | 26 | |
27 | 27 | /** |
28 | 28 | * @throws ElementNotFoundException If there is no delete account button on the page |
29 | + * @return void |
|
29 | 30 | */ |
30 | 31 | public function deleteAccount(); |
31 | 32 | |
@@ -86,6 +87,9 @@ discard block |
||
86 | 87 | */ |
87 | 88 | public function hasImpersonateButton(); |
88 | 89 | |
90 | + /** |
|
91 | + * @return void |
|
92 | + */ |
|
89 | 93 | public function impersonate(); |
90 | 94 | |
91 | 95 | /** |