Completed
Push — travis-xenial ( 7a72dd...c18ce8 )
by Kamil
12:54 queued 05:28
created
src/Sylius/Behat/Page/Admin/ProductVariant/CreatePageInterface.php 1 patch
Doc Comments   +30 added lines patch added patch discarded remove patch
@@ -17,27 +17,57 @@
 block discarded – undo
17 17
 
18 18
 interface CreatePageInterface extends BaseCreatePageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function specifyPrice(string $price, string $channelName): void;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function specifyOriginalPrice(string $originalPrice, string $channelName): void;
23 29
 
30
+    /**
31
+     * @return void
32
+     */
24 33
     public function specifyHeightWidthDepthAndWeight(string $height, string $width, string $depth, string $weight): 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 specifyCurrentStock(string $currentStock): void;
29 44
 
45
+    /**
46
+     * @return void
47
+     */
30 48
     public function nameItIn(string $name, string $language): void;
31 49
 
50
+    /**
51
+     * @return void
52
+     */
32 53
     public function selectOption(string $optionName, string $optionValue): void;
33 54
 
55
+    /**
56
+     * @return void
57
+     */
34 58
     public function choosePricingCalculator(string $name): void;
35 59
 
36 60
     public function getValidationMessageForForm(): string;
37 61
 
62
+    /**
63
+     * @return void
64
+     */
38 65
     public function selectShippingCategory(string $shippingCategoryName): void;
39 66
 
40 67
     public function getPricesValidationMessage(): string;
41 68
 
69
+    /**
70
+     * @return void
71
+     */
42 72
     public function setShippingRequired(bool $isShippingRequired): void;
43 73
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ProductVariant/GeneratePageInterface.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -17,12 +17,24 @@
 block discarded – undo
17 17
 
18 18
 interface GeneratePageInterface extends SymfonyPageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function generate(): void;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function specifyPrice(int $nth, int $price, string $channelName): void;
23 29
 
30
+    /**
31
+     * @return void
32
+     */
24 33
     public function specifyCode(int $nth, string $code): void;
25 34
 
35
+    /**
36
+     * @return void
37
+     */
26 38
     public function removeVariant(int $nth): void;
27 39
 
28 40
     public function getValidationMessage(string $element, int $position): string;
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ProductVariant/IndexPageInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -22,7 +22,13 @@
 block discarded – undo
22 22
 
23 23
     public function getOnHoldQuantityFor(ProductVariantInterface $productVariant): int;
24 24
 
25
+    /**
26
+     * @return void
27
+     */
25 28
     public function setPosition(string $name, int $position): void;
26 29
 
30
+    /**
31
+     * @return void
32
+     */
27 33
     public function savePositions(): void;
28 34
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Promotion/CreatePageInterface.php 1 patch
Doc Comments   +50 added lines patch added patch discarded remove patch
@@ -18,41 +18,90 @@  discard block
 block discarded – undo
18 18
 
19 19
 interface CreatePageInterface extends BaseCreatePageInterface
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function specifyCode(string $code): void;
22 25
 
26
+    /**
27
+     * @return void
28
+     */
23 29
     public function nameIt(string $name): void;
24 30
 
31
+    /**
32
+     * @return void
33
+     */
25 34
     public function addRule(string $ruleName): void;
26 35
 
36
+    /**
37
+     * @return void
38
+     */
27 39
     public function selectRuleOption(string $option, string $value, bool $multiple = false): void;
28 40
 
29 41
     /**
30 42
      * @param string|string[] $value
43
+     * @return void
31 44
      */
32 45
     public function selectAutocompleteRuleOption(string $option, $value, bool $multiple = false): void;
33 46
 
47
+    /**
48
+     * @return void
49
+     */
34 50
     public function fillRuleOption(string $option, string $value): void;
35 51
 
52
+    /**
53
+     * @return void
54
+     */
36 55
     public function fillRuleOptionForChannel(string $channelName, string $option, string $value): void;
37 56
 
57
+    /**
58
+     * @return void
59
+     */
38 60
     public function addAction(string $actionName): void;
39 61
 
62
+    /**
63
+     * @return void
64
+     */
40 65
     public function selectActionOption(string $option, string $value, bool $multiple = false): void;
41 66
 
67
+    /**
68
+     * @return void
69
+     */
42 70
     public function fillActionOption(string $option, string $value): void;
43 71
 
72
+    /**
73
+     * @return void
74
+     */
44 75
     public function fillActionOptionForChannel(string $channelName, string $option, string $value): void;
45 76
 
77
+    /**
78
+     * @return void
79
+     */
46 80
     public function fillUsageLimit(string $limit): void;
47 81
 
82
+    /**
83
+     * @return void
84
+     */
48 85
     public function makeExclusive(): void;
49 86
 
87
+    /**
88
+     * @return void
89
+     */
50 90
     public function checkCouponBased(): void;
51 91
 
92
+    /**
93
+     * @return void
94
+     */
52 95
     public function checkChannel(string $name): void;
53 96
 
97
+    /**
98
+     * @return void
99
+     */
54 100
     public function setStartsAt(\DateTimeInterface $dateTime): void;
55 101
 
102
+    /**
103
+     * @return void
104
+     */
56 105
     public function setEndsAt(\DateTimeInterface $dateTime): void;
57 106
 
58 107
     /**
@@ -62,6 +111,7 @@  discard block
 block discarded – undo
62 111
 
63 112
     /**
64 113
      * @param string|string[] $value
114
+     * @return void
65 115
      */
66 116
     public function selectAutoCompleteFilterOption(string $option, $value, bool $multiple = false): void;
67 117
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/PromotionCoupon/CreatePageInterface.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 CreatePageInterface extends BaseCreatePageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function setCustomerUsageLimit(int $limit): void;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function setExpiresAt(\DateTimeInterface $date): void;
23 29
 
30
+    /**
31
+     * @return void
32
+     */
24 33
     public function specifyCode(string $code): void;
25 34
 
35
+    /**
36
+     * @return void
37
+     */
26 38
     public function setUsageLimit(int $limit): void;
27 39
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/PromotionCoupon/UpdatePageInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -19,9 +19,18 @@
 block discarded – undo
19 19
 {
20 20
     public function isCodeDisabled(): bool;
21 21
 
22
+    /**
23
+     * @return void
24
+     */
22 25
     public function setCustomerUsageLimit(int $limit): void;
23 26
 
27
+    /**
28
+     * @return void
29
+     */
24 30
     public function setExpiresAt(\DateTimeInterface $date): void;
25 31
 
32
+    /**
33
+     * @return void
34
+     */
26 35
     public function setUsageLimit(string $limit): void;
27 36
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ShippingCategory/CreatePageInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -17,9 +17,18 @@
 block discarded – undo
17 17
 
18 18
 interface CreatePageInterface extends BaseCreatePageInteface
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
 
30
+    /**
31
+     * @return void
32
+     */
24 33
     public function specifyDescription(string $description): void;
25 34
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ShippingMethod/CreatePageInterface.php 1 patch
Doc Comments   +26 added lines patch added patch discarded remove patch
@@ -18,20 +18,46 @@
 block discarded – undo
18 18
 
19 19
 interface CreatePageInterface extends BaseCreatePageInterface
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function specifyCode(string $code): void;
22 25
 
26
+    /**
27
+     * @param null|integer $position
28
+     *
29
+     * @return void
30
+     */
23 31
     public function specifyPosition(?int $position): void;
24 32
 
33
+    /**
34
+     * @return void
35
+     */
25 36
     public function nameIt(string $name, string $language): void;
26 37
 
38
+    /**
39
+     * @return void
40
+     */
27 41
     public function describeIt(string $description, string $languageCode): void;
28 42
 
43
+    /**
44
+     * @return void
45
+     */
29 46
     public function specifyAmountForChannel(string $channelCode, string $amount): void;
30 47
 
48
+    /**
49
+     * @return void
50
+     */
31 51
     public function chooseZone(string $name): void;
32 52
 
53
+    /**
54
+     * @return void
55
+     */
33 56
     public function chooseCalculator(string $name): void;
34 57
 
58
+    /**
59
+     * @return void
60
+     */
35 61
     public function checkChannel($channelName): void;
36 62
 
37 63
     /**
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ShippingMethod/IndexPageInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,6 +17,9 @@
 block discarded – undo
17 17
 
18 18
 interface IndexPageInterface extends BaseIndexPageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function chooseArchival(string $isArchival): void;
21 24
 
22 25
     public function isArchivalFilterEnabled(): bool;
Please login to merge, or discard this patch.