Completed
Push — locale-in-url ( 6d9eda )
by Kamil
23:08
created
src/Sylius/Bundle/ThemeBundle/Twig/ThemeFilesystemLoader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
     }
105 105
 
106 106
     /**
107
-     * @param TemplateReferenceInterface|string $template
107
+     * @param string $template
108 108
      *
109 109
      * @return string
110 110
      */
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/Definition/ActionGroup.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
     }
54 54
 
55 55
     /**
56
-     * @return array
56
+     * @return Action[]
57 57
      */
58 58
     public function getActions()
59 59
     {
Please login to merge, or discard this patch.
Sylius/Component/Product/Model/ProductOptionValueTranslationInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param string $value
30
+     * @return void
30 31
      */
31 32
     public function setValue($value);
32 33
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Promotion/Model/PromotionCouponInterface.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param int|null $usageLimit
30
+     * @return void
30 31
      */
31 32
     public function setUsageLimit($usageLimit);
32 33
 
@@ -37,11 +38,18 @@  discard block
 block discarded – undo
37 38
 
38 39
     /**
39 40
      * @param int $used
41
+     * @return void
40 42
      */
41 43
     public function setUsed($used);
42 44
 
45
+    /**
46
+     * @return void
47
+     */
43 48
     public function incrementUsed();
44 49
 
50
+    /**
51
+     * @return void
52
+     */
45 53
     public function decrementUsed();
46 54
 
47 55
     /**
@@ -51,6 +59,7 @@  discard block
 block discarded – undo
51 59
 
52 60
     /**
53 61
      * @param PromotionInterface $promotion
62
+     * @return void
54 63
      */
55 64
     public function setPromotion(PromotionInterface $promotion = null);
56 65
 
@@ -61,6 +70,7 @@  discard block
 block discarded – undo
61 70
 
62 71
     /**
63 72
      * @param \DateTime $expiresAt
73
+     * @return void
64 74
      */
65 75
     public function setExpiresAt(\DateTime $expiresAt = null);
66 76
 
Please login to merge, or discard this patch.
src/Sylius/Component/Promotion/Model/PromotionInterface.php 1 patch
Doc Comments   +21 added lines patch added patch discarded remove patch
@@ -28,6 +28,7 @@  discard block
 block discarded – undo
28 28
 
29 29
     /**
30 30
      * @param string $name
31
+     * @return void
31 32
      */
32 33
     public function setName($name);
33 34
 
@@ -38,6 +39,7 @@  discard block
 block discarded – undo
38 39
 
39 40
     /**
40 41
      * @param string $description
42
+     * @return void
41 43
      */
42 44
     public function setDescription($description);
43 45
 
@@ -48,6 +50,7 @@  discard block
 block discarded – undo
48 50
 
49 51
     /**
50 52
      * @param int $priority
53
+     * @return void
51 54
      */
52 55
     public function setPriority($priority);
53 56
 
@@ -58,6 +61,7 @@  discard block
 block discarded – undo
58 61
 
59 62
     /**
60 63
      * @param bool $exclusive
64
+     * @return void
61 65
      */
62 66
     public function setExclusive($exclusive);
63 67
 
@@ -68,6 +72,7 @@  discard block
 block discarded – undo
68 72
 
69 73
     /**
70 74
      * @param int $usageLimit
75
+     * @return void
71 76
      */
72 77
     public function setUsageLimit($usageLimit);
73 78
 
@@ -78,11 +83,18 @@  discard block
 block discarded – undo
78 83
 
79 84
     /**
80 85
      * @param int $used
86
+     * @return void
81 87
      */
82 88
     public function setUsed($used);
83 89
 
90
+    /**
91
+     * @return void
92
+     */
84 93
     public function incrementUsed();
85 94
 
95
+    /**
96
+     * @return void
97
+     */
86 98
     public function decrementUsed();
87 99
 
88 100
     /**
@@ -92,6 +104,7 @@  discard block
 block discarded – undo
92 104
 
93 105
     /**
94 106
      * @param \DateTime $startsAt
107
+     * @return void
95 108
      */
96 109
     public function setStartsAt(\DateTime $startsAt = null);
97 110
 
@@ -102,6 +115,7 @@  discard block
 block discarded – undo
102 115
 
103 116
     /**
104 117
      * @param \DateTime $endsAt
118
+     * @return void
105 119
      */
106 120
     public function setEndsAt(\DateTime $endsAt = null);
107 121
 
@@ -112,6 +126,7 @@  discard block
 block discarded – undo
112 126
 
113 127
     /**
114 128
      * @param bool $couponBased
129
+     * @return void
115 130
      */
116 131
     public function setCouponBased($couponBased);
117 132
 
@@ -134,11 +149,13 @@  discard block
 block discarded – undo
134 149
 
135 150
     /**
136 151
      * @param PromotionCouponInterface $coupon
152
+     * @return void
137 153
      */
138 154
     public function addCoupon(PromotionCouponInterface $coupon);
139 155
 
140 156
     /**
141 157
      * @param PromotionCouponInterface $coupon
158
+     * @return void
142 159
      */
143 160
     public function removeCoupon(PromotionCouponInterface $coupon);
144 161
 
@@ -161,11 +178,13 @@  discard block
 block discarded – undo
161 178
 
162 179
     /**
163 180
      * @param PromotionRuleInterface $rule
181
+     * @return void
164 182
      */
165 183
     public function addRule(PromotionRuleInterface $rule);
166 184
 
167 185
     /**
168 186
      * @param PromotionRuleInterface $rule
187
+     * @return void
169 188
      */
170 189
     public function removeRule(PromotionRuleInterface $rule);
171 190
 
@@ -188,11 +207,13 @@  discard block
 block discarded – undo
188 207
 
189 208
     /**
190 209
      * @param PromotionActionInterface $action
210
+     * @return void
191 211
      */
192 212
     public function addAction(PromotionActionInterface $action);
193 213
 
194 214
     /**
195 215
      * @param PromotionActionInterface $action
216
+     * @return void
196 217
      */
197 218
     public function removeAction(PromotionActionInterface $action);
198 219
 }
Please login to merge, or discard this patch.
src/Sylius/Component/User/Model/UserOAuthInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@  discard block
 block discarded – undo
26 26
 
27 27
     /**
28 28
      * @param string $provider
29
+     * @return void
29 30
      */
30 31
     public function setProvider($provider);
31 32
 
@@ -36,6 +37,7 @@  discard block
 block discarded – undo
36 37
 
37 38
     /**
38 39
      * @param string $identifier
40
+     * @return void
39 41
      */
40 42
     public function setIdentifier($identifier);
41 43
 
@@ -46,6 +48,7 @@  discard block
 block discarded – undo
46 48
 
47 49
     /**
48 50
      * @param string $accessToken
51
+     * @return void
49 52
      */
50 53
     public function setAccessToken($accessToken);
51 54
 
@@ -56,6 +59,7 @@  discard block
 block discarded – undo
56 59
 
57 60
    /**
58 61
     * @param string $refreshToken
62
+    * @return void
59 63
     */
60 64
    public function setRefreshToken($refreshToken);
61 65
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/ProductReview/CreatePageInterface.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -20,24 +20,31 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param string $title
23
+     * @return void
23 24
      */
24 25
     public function titleReview($title);
25 26
 
26 27
     /**
27 28
      * @param string $comment
29
+     * @return void
28 30
      */
29 31
     public function setComment($comment);
30 32
 
31 33
     /**
32 34
      * @param string $author
35
+     * @return void
33 36
      */
34 37
     public function setAuthor($author);
35 38
 
36 39
     /**
37 40
      * @param int $rate
41
+     * @return void
38 42
      */
39 43
     public function rateReview($rate);
40 44
 
45
+    /**
46
+     * @return void
47
+     */
41 48
     public function submitReview();
42 49
 
43 50
     /**
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductInterface.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -42,6 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
     /**
44 44
      * @param string $name
45
+     * @return void
45 46
      */
46 47
     public function setName($name);
47 48
 
@@ -52,6 +53,7 @@  discard block
 block discarded – undo
52 53
 
53 54
     /**
54 55
      * @param string $description
56
+     * @return void
55 57
      */
56 58
     public function setDescription($description);
57 59
 
@@ -62,6 +64,7 @@  discard block
 block discarded – undo
62 64
 
63 65
     /**
64 66
      * @param string $metaKeywords
67
+     * @return void
65 68
      */
66 69
     public function setMetaKeywords($metaKeywords);
67 70
 
@@ -72,6 +75,7 @@  discard block
 block discarded – undo
72 75
 
73 76
     /**
74 77
      * @param string $metaDescription
78
+     * @return void
75 79
      */
76 80
     public function setMetaDescription($metaDescription);
77 81
 
@@ -87,11 +91,13 @@  discard block
 block discarded – undo
87 91
 
88 92
     /**
89 93
      * @param ProductVariantInterface $variant
94
+     * @return void
90 95
      */
91 96
     public function addVariant(ProductVariantInterface $variant);
92 97
 
93 98
     /**
94 99
      * @param ProductVariantInterface $variant
100
+     * @return void
95 101
      */
96 102
     public function removeVariant(ProductVariantInterface $variant);
97 103
 
@@ -114,11 +120,13 @@  discard block
 block discarded – undo
114 120
 
115 121
     /**
116 122
      * @param ProductOptionInterface $option
123
+     * @return void
117 124
      */
118 125
     public function addOption(ProductOptionInterface $option);
119 126
 
120 127
     /**
121 128
      * @param ProductOptionInterface $option
129
+     * @return void
122 130
      */
123 131
     public function removeOption(ProductOptionInterface $option);
124 132
 
@@ -141,6 +149,7 @@  discard block
 block discarded – undo
141 149
 
142 150
     /**
143 151
      * @param \DateTime|null $availableOn
152
+     * @return void
144 153
      */
145 154
     public function setAvailableOn(\DateTime $availableOn = null);
146 155
 
@@ -151,11 +160,13 @@  discard block
 block discarded – undo
151 160
 
152 161
     /**
153 162
      * @param \DateTime|null $availableUntil
163
+     * @return void
154 164
      */
155 165
     public function setAvailableUntil(\DateTime $availableUntil = null);
156 166
 
157 167
     /**
158 168
      * @param ProductAssociationInterface $association
169
+     * @return void
159 170
      */
160 171
     public function addAssociation(ProductAssociationInterface $association);
161 172
 
@@ -166,6 +177,7 @@  discard block
 block discarded – undo
166 177
 
167 178
     /**
168 179
      * @param ProductAssociationInterface $association
180
+     * @return void
169 181
      */
170 182
     public function removeAssociation(ProductAssociationInterface $association);
171 183
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Checkout/AddressPageInterface.php 1 patch
Doc Comments   +20 added lines patch added patch discarded remove patch
@@ -21,6 +21,7 @@  discard block
 block discarded – undo
21 21
 {
22 22
     /**
23 23
      * @throws \RuntimeException
24
+     * @return void
24 25
      */
25 26
     public function chooseDifferentBillingAddress();
26 27
 
@@ -39,21 +40,25 @@  discard block
 block discarded – undo
39 40
 
40 41
     /**
41 42
      * @param AddressInterface $billingAddress
43
+     * @return void
42 44
      */
43 45
     public function specifyBillingAddress(AddressInterface $billingAddress);
44 46
 
45 47
     /**
46 48
      * @param string $province
49
+     * @return void
47 50
      */
48 51
     public function selectBillingAddressProvince($province);
49 52
 
50 53
     /**
51 54
      * @param AddressInterface $shippingAddress
55
+     * @return void
52 56
      */
53 57
     public function specifyShippingAddress(AddressInterface $shippingAddress);
54 58
 
55 59
     /**
56 60
      * @param string $province
61
+     * @return void
57 62
      */
58 63
     public function selectShippingAddressProvince($province);
59 64
 
@@ -62,15 +67,20 @@  discard block
 block discarded – undo
62 67
      */
63 68
     public function canSignIn();
64 69
 
70
+    /**
71
+     * @return void
72
+     */
65 73
     public function signIn();
66 74
 
67 75
     /**
68 76
      * @param string $email
77
+     * @return void
69 78
      */
70 79
     public function specifyEmail($email);
71 80
 
72 81
     /**
73 82
      * @param string $password
83
+     * @return void
74 84
      */
75 85
     public function specifyPassword($password);
76 86
 
@@ -86,17 +96,25 @@  discard block
 block discarded – undo
86 96
      */
87 97
     public function getShippingAddressCountry();
88 98
 
99
+    /**
100
+     * @return void
101
+     */
89 102
     public function nextStep();
90 103
 
104
+    /**
105
+     * @return void
106
+     */
91 107
     public function backToStore();
92 108
 
93 109
     /**
94 110
      * @param string $provinceName
111
+     * @return void
95 112
      */
96 113
     public function specifyBillingAddressProvince($provinceName);
97 114
 
98 115
     /**
99 116
      * @param string $provinceName
117
+     * @return void
100 118
      */
101 119
     public function specifyShippingAddressProvince($provinceName);
102 120
 
@@ -112,11 +130,13 @@  discard block
 block discarded – undo
112 130
 
113 131
     /**
114 132
      * @param AddressInterface $address
133
+     * @return void
115 134
      */
116 135
     public function selectShippingAddressFromAddressBook(AddressInterface $address);
117 136
 
118 137
     /**
119 138
      * @param AddressInterface $address
139
+     * @return void
120 140
      */
121 141
     public function selectBillingAddressFromAddressBook(AddressInterface $address);
122 142
 
Please login to merge, or discard this patch.