Completed
Push — travis-xenial ( 7a72dd...c18ce8 )
by Kamil
12:54 queued 05:28
created
src/Sylius/Behat/Page/Admin/Channel/IndexPageInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,5 +17,8 @@
 block discarded – undo
17 17
 
18 18
 interface IndexPageInterface extends BaseIndexPageInterface
19 19
 {
20
+    /**
21
+     * @return string
22
+     */
20 23
     public function getUsedThemeName(string $channelCode): ?string;
21 24
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Country/CreatePageInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -17,7 +17,13 @@
 block discarded – undo
17 17
 
18 18
 interface CreatePageInterface extends BaseCreatePageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function chooseName(string $name): void;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function addProvince(string $name, string $code, string $abbreviation = null): void;
23 29
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Country/UpdatePageInterface.php 1 patch
Doc Comments   +24 added lines patch added patch discarded remove patch
@@ -17,8 +17,14 @@  discard block
 block discarded – undo
17 17
 
18 18
 interface UpdatePageInterface extends BaseUpdatePageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function enable(): void;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function disable(): void;
23 29
 
24 30
     public function isCodeFieldDisabled(): bool;
@@ -27,15 +33,33 @@  discard block
 block discarded – undo
27 33
 
28 34
     public function isThereProvinceWithCode(string $provinceCode): bool;
29 35
 
36
+    /**
37
+     * @return void
38
+     */
30 39
     public function addProvince(string $name, string $code, string $abbreviation = null): void;
31 40
 
41
+    /**
42
+     * @return void
43
+     */
32 44
     public function removeProvince(string $provinceName): void;
33 45
 
46
+    /**
47
+     * @return void
48
+     */
34 49
     public function clickAddProvinceButton(): void;
35 50
 
51
+    /**
52
+     * @return void
53
+     */
36 54
     public function nameProvince(string $provinceName): void;
37 55
 
56
+    /**
57
+     * @return void
58
+     */
38 59
     public function removeProvinceName(string $provinceName): void;
39 60
 
61
+    /**
62
+     * @return void
63
+     */
40 64
     public function specifyProvinceCode(string $provinceCode): void;
41 65
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Currency/CreatePageInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -17,7 +17,13 @@
 block discarded – undo
17 17
 
18 18
 interface CreatePageInterface extends BaseCreatePageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function chooseName(string $name): void;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function specifyExchangeRate(float $exchangeRate): void;
23 29
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Currency/UpdatePageInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -17,14 +17,23 @@
 block discarded – undo
17 17
 
18 18
 interface UpdatePageInterface extends BaseUpdatePageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function enable(): void;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function disable(): void;
23 29
 
24 30
     public function canBeDisabled(): bool;
25 31
 
26 32
     public function canHaveExchangeRateChanged(): bool;
27 33
 
34
+    /**
35
+     * @return void
36
+     */
28 37
     public function changeExchangeRate(string $exchangeRate): void;
29 38
 
30 39
     public function getExchangeRateValue(): string;
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Customer/CreatePageInterface.php 1 patch
Doc Comments   +24 added lines patch added patch discarded remove patch
@@ -17,20 +17,44 @@
 block discarded – undo
17 17
 
18 18
 interface CreatePageInterface extends BaseCreatePageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function specifyFirstName(string $name): void;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function specifyLastName(string $name): void;
23 29
 
30
+    /**
31
+     * @return void
32
+     */
24 33
     public function specifyEmail(string $email): void;
25 34
 
35
+    /**
36
+     * @return void
37
+     */
26 38
     public function specifyBirthday(string $birthday): void;
27 39
 
40
+    /**
41
+     * @return void
42
+     */
28 43
     public function specifyPassword(string $password): void;
29 44
 
45
+    /**
46
+     * @return void
47
+     */
30 48
     public function chooseGender(string $gender): void;
31 49
 
50
+    /**
51
+     * @return void
52
+     */
32 53
     public function chooseGroup(string $group): void;
33 54
 
55
+    /**
56
+     * @return void
57
+     */
34 58
     public function selectCreateAccount(): void;
35 59
 
36 60
     public function hasPasswordField(): bool;
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Customer/ShowPageInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -22,6 +22,7 @@  discard block
 block discarded – undo
22 22
 
23 23
     /**
24 24
      * @throws ElementNotFoundException If there is no delete account button on the page
25
+     * @return void
25 26
      */
26 27
     public function deleteAccount(): void;
27 28
 
@@ -49,6 +50,9 @@  discard block
 block discarded – undo
49 50
 
50 51
     public function hasImpersonateButton(): bool;
51 52
 
53
+    /**
54
+     * @return void
55
+     */
52 56
     public function impersonate(): void;
53 57
 
54 58
     public function hasCustomerPlacedAnyOrders(): bool;
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Customer/UpdatePageInterface.php 1 patch
Doc Comments   +21 added lines patch added patch discarded remove patch
@@ -17,26 +17,47 @@
 block discarded – undo
17 17
 
18 18
 interface UpdatePageInterface extends BaseUpdatePageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function enable(): void;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function disable(): void;
23 29
 
24 30
     public function getFullName(): string;
25 31
 
32
+    /**
33
+     * @return void
34
+     */
26 35
     public function changeFirstName(string $firstName): void;
27 36
 
28 37
     public function getFirstName(): string;
29 38
 
39
+    /**
40
+     * @return void
41
+     */
30 42
     public function changeLastName(string $lastName): void;
31 43
 
32 44
     public function getLastName(): string;
33 45
 
46
+    /**
47
+     * @return void
48
+     */
34 49
     public function changeEmail(string $email): void;
35 50
 
51
+    /**
52
+     * @return void
53
+     */
36 54
     public function changePassword(string $password): void;
37 55
 
38 56
     public function getPassword(): string;
39 57
 
58
+    /**
59
+     * @return void
60
+     */
40 61
     public function subscribeToTheNewsletter(): void;
41 62
 
42 63
     public function isSubscribedToTheNewsletter(): bool;
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/CustomerGroup/CreatePageInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -17,7 +17,13 @@
 block discarded – undo
17 17
 
18 18
 interface CreatePageInterface extends BaseCreatePageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function specifyCode(string $code): void;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function nameIt(string $name): void;
23 29
 }
Please login to merge, or discard this patch.