Completed
Push — 1.5-lint-container ( 339259...ddb6cd )
by Kamil
05:28
created
src/Sylius/Behat/Page/Admin/Administrator/UpdatePageInterface.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -17,11 +17,23 @@
 block discarded – undo
17 17
 
18 18
 interface UpdatePageInterface extends BaseUpdatePageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function changeUsername(string $username): void;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function changeEmail(string $email): void;
23 29
 
30
+    /**
31
+     * @return void
32
+     */
24 33
     public function changePassword(string $password): void;
25 34
 
35
+    /**
36
+     * @return void
37
+     */
26 38
     public function changeLocale(string $localeCode): void;
27 39
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Channel/CreatePageInterface.php 1 patch
Doc Comments   +48 added lines patch added patch discarded remove patch
@@ -17,35 +17,83 @@
 block discarded – undo
17 17
 
18 18
 interface CreatePageInterface extends BaseCreatePageInterface
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
 
30
+    /**
31
+     * @return void
32
+     */
24 33
     public function nameIt(string $name): void;
25 34
 
35
+    /**
36
+     * @return void
37
+     */
26 38
     public function specifyCode(string $code): void;
27 39
 
40
+    /**
41
+     * @return void
42
+     */
28 43
     public function describeItAs(string $description): void;
29 44
 
45
+    /**
46
+     * @return void
47
+     */
30 48
     public function setHostname(string $hostname): void;
31 49
 
50
+    /**
51
+     * @return void
52
+     */
32 53
     public function setContactEmail(string $contactEmail): void;
33 54
 
55
+    /**
56
+     * @return void
57
+     */
34 58
     public function defineColor(string $color): void;
35 59
 
60
+    /**
61
+     * @return void
62
+     */
36 63
     public function chooseLocale(string $language): void;
37 64
 
65
+    /**
66
+     * @return void
67
+     */
38 68
     public function chooseCurrency(string $currencyCode): void;
39 69
 
70
+    /**
71
+     * @return void
72
+     */
40 73
     public function chooseDefaultTaxZone(string $taxZone): void;
41 74
 
75
+    /**
76
+     * @return void
77
+     */
42 78
     public function chooseDefaultLocale(?string $locale): void;
43 79
 
80
+    /**
81
+     * @return void
82
+     */
44 83
     public function chooseBaseCurrency(?string $currency): void;
45 84
 
85
+    /**
86
+     * @return void
87
+     */
46 88
     public function chooseTaxCalculationStrategy(string $taxCalculationStrategy): void;
47 89
 
90
+    /**
91
+     * @return void
92
+     */
48 93
     public function allowToSkipShippingStep(): void;
49 94
 
95
+    /**
96
+     * @return void
97
+     */
50 98
     public function allowToSkipPaymentStep(): void;
51 99
 }
Please login to merge, or discard this patch.
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/Crud/CreatePageInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@
 block discarded – undo
25 25
 
26 26
     /**
27 27
      * @throws ElementNotFoundException
28
+     * @return void
28 29
      */
29 30
     public function create(): void;
30 31
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Crud/IndexPageInterface.php 1 patch
Doc Comments   +15 added lines patch added patch discarded remove patch
@@ -24,17 +24,32 @@
 block discarded – undo
24 24
 
25 25
     public function getColumnFields(string $columnName): array;
26 26
 
27
+    /**
28
+     * @return void
29
+     */
27 30
     public function sortBy(string $fieldName): void;
28 31
 
32
+    /**
33
+     * @return void
34
+     */
29 35
     public function deleteResourceOnPage(array $parameters): void;
30 36
 
31 37
     public function getActionsForResource(array $parameters): NodeElement;
32 38
 
39
+    /**
40
+     * @return void
41
+     */
33 42
     public function checkResourceOnPage(array $parameters): void;
34 43
 
35 44
     public function countItems(): int;
36 45
 
46
+    /**
47
+     * @return void
48
+     */
37 49
     public function filter(): void;
38 50
 
51
+    /**
52
+     * @return void
53
+     */
39 54
     public function bulkDelete(): void;
40 55
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Crud/UpdatePageInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -28,5 +28,8 @@
 block discarded – undo
28 28
      */
29 29
     public function hasResourceValues(array $parameters): bool;
30 30
 
31
+    /**
32
+     * @return void
33
+     */
31 34
     public function saveChanges(): void;
32 35
 }
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.