Completed
Push — fendrychl--shipping_discount_b... ( 954064 )
by Kamil
65:39 queued 53:47
created
src/Sylius/Component/Channel/Context/ChannelNotFoundException.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -17,6 +17,7 @@
 block discarded – undo
17 17
 {
18 18
     /**
19 19
      * {@inheritdoc}
20
+     * @param \UnexpectedValueException $messageOrPreviousException
20 21
      */
21 22
     public function __construct($messageOrPreviousException = null, ?\Throwable $previousException = null)
22 23
     {
Please login to merge, or discard this patch.
src/Sylius/Bundle/ThemeBundle/Translation/Translator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
      * @param TranslatorResourceProviderInterface $resourceProvider
52 52
      * @param MessageSelector|MessageFormatterInterface $messageFormatterOrSelector
53 53
      * @param string $locale
54
-     * @param array $options
54
+     * @param string[] $options
55 55
      */
56 56
     public function __construct(
57 57
         TranslatorLoaderProviderInterface $loaderProvider,
Please login to merge, or discard this patch.
src/Sylius/Bundle/ShopBundle/EmailManager/ContactEmailManagerInterface.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,8 @@
 block discarded – undo
17 17
 {
18 18
     /**
19 19
      * @param array $data
20
-     * @param array $recipients
20
+     * @param string[] $recipients
21
+     * @return void
21 22
      */
22 23
     public function sendContactRequest(array $data, array $recipients): void;
23 24
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/OrderInterface.php 1 patch
Doc Comments   +15 added lines patch added patch discarded remove patch
@@ -44,6 +44,7 @@  discard block
 block discarded – undo
44 44
 
45 45
     /**
46 46
      * @param AddressInterface|null $address
47
+     * @return void
47 48
      */
48 49
     public function setShippingAddress(?AddressInterface $address): void;
49 50
 
@@ -54,6 +55,7 @@  discard block
 block discarded – undo
54 55
 
55 56
     /**
56 57
      * @param AddressInterface|null $address
58
+     * @return void
57 59
      */
58 60
     public function setBillingAddress(?AddressInterface $address): void;
59 61
 
@@ -64,6 +66,7 @@  discard block
 block discarded – undo
64 66
 
65 67
     /**
66 68
      * @param string|null $checkoutState
69
+     * @return void
67 70
      */
68 71
     public function setCheckoutState(?string $checkoutState): void;
69 72
 
@@ -74,6 +77,7 @@  discard block
 block discarded – undo
74 77
 
75 78
     /**
76 79
      * @param string|null $paymentState
80
+     * @return void
77 81
      */
78 82
     public function setPaymentState(?string $paymentState): void;
79 83
 
@@ -106,14 +110,19 @@  discard block
 block discarded – undo
106 110
 
107 111
     /**
108 112
      * @param ShipmentInterface $shipment
113
+     * @return void
109 114
      */
110 115
     public function addShipment(ShipmentInterface $shipment): void;
111 116
 
112 117
     /**
113 118
      * @param ShipmentInterface $shipment
119
+     * @return void
114 120
      */
115 121
     public function removeShipment(ShipmentInterface $shipment): void;
116 122
 
123
+    /**
124
+     * @return void
125
+     */
117 126
     public function removeShipments(): void;
118 127
 
119 128
     /**
@@ -130,6 +139,7 @@  discard block
 block discarded – undo
130 139
 
131 140
     /**
132 141
      * @param string|null $currencyCode
142
+     * @return void
133 143
      */
134 144
     public function setCurrencyCode(?string $currencyCode): void;
135 145
 
@@ -140,11 +150,13 @@  discard block
 block discarded – undo
140 150
 
141 151
     /**
142 152
      * @param string|null $localeCode
153
+     * @return void
143 154
      */
144 155
     public function setLocaleCode(?string $localeCode): void;
145 156
 
146 157
     /**
147 158
      * @param BaseCouponInterface|null $coupon
159
+     * @return void
148 160
      */
149 161
     public function setPromotionCoupon(?BaseCouponInterface $coupon): void;
150 162
 
@@ -155,6 +167,7 @@  discard block
 block discarded – undo
155 167
 
156 168
     /**
157 169
      * @param string|null $state
170
+     * @return void
158 171
      */
159 172
     public function setShippingState(?string $state): void;
160 173
 
@@ -187,6 +200,7 @@  discard block
 block discarded – undo
187 200
 
188 201
     /**
189 202
      * @param string|null $tokenValue
203
+     * @return void
190 204
      */
191 205
     public function setTokenValue(?string $tokenValue): void;
192 206
 
@@ -197,6 +211,7 @@  discard block
 block discarded – undo
197 211
 
198 212
     /**
199 213
      * @param string|null $customerIp
214
+     * @return void
200 215
      */
201 216
     public function setCustomerIp(?string $customerIp): void;
202 217
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/ResourceBundle/Controller/RequestConfiguration.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
     /**
169 169
      * @param string $name
170 170
      *
171
-     * @return mixed|string|null
171
+     * @return string
172 172
      */
173 173
     public function getRedirectRoute($name)
174 174
     {
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
     }
229 229
 
230 230
     /**
231
-     * @param object|null $resource
231
+     * @param \Sylius\Component\Resource\Model\ResourceInterface|null $resource
232 232
      *
233 233
      * @return array
234 234
      */
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Order/UpdatePageInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -20,11 +20,13 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param AddressInterface $address
23
+     * @return void
23 24
      */
24 25
     public function specifyShippingAddress(AddressInterface $address);
25 26
 
26 27
     /**
27 28
      * @param AddressInterface $address
29
+     * @return void
28 30
      */
29 31
     public function specifyBillingAddress(AddressInterface $address);
30 32
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ShippingCategory/CreatePageInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -19,16 +19,19 @@
 block discarded – undo
19 19
 {
20 20
     /**
21 21
      * @param string $code
22
+     * @return void
22 23
      */
23 24
     public function specifyCode($code);
24 25
 
25 26
     /**
26 27
      * @param string $name
28
+     * @return void
27 29
      */
28 30
     public function nameIt($name);
29 31
 
30 32
     /**
31 33
      * @param string $description
34
+     * @return void
32 35
      */
33 36
     public function specifyDescription($description);
34 37
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Element/Shop/Account/RegisterElementInterface.php 1 patch
Doc Comments   +26 added lines patch added patch discarded remove patch
@@ -13,21 +13,47 @@
 block discarded – undo
13 13
      */
14 14
     public function checkValidationMessageFor(string $element, string $message): bool;
15 15
 
16
+    /**
17
+     * @return void
18
+     */
16 19
     public function register(): void;
17 20
 
21
+    /**
22
+     * @return void
23
+     */
18 24
     public function specifyEmail(?string $email): void;
19 25
 
20 26
     public function getEmail(): string;
21 27
 
28
+    /**
29
+     * @return void
30
+     */
22 31
     public function specifyFirstName(?string $firstName): void;
23 32
 
33
+    /**
34
+     * @return void
35
+     */
24 36
     public function specifyLastName(?string $lastName): void;
25 37
 
38
+    /**
39
+     * @return void
40
+     */
26 41
     public function specifyPassword(?string $password): void;
27 42
 
43
+    /**
44
+     * @return void
45
+     */
28 46
     public function specifyPhoneNumber(string $phoneNumber): void;
29 47
 
48
+    /**
49
+     * @param string|null $password
50
+     *
51
+     * @return void
52
+     */
30 53
     public function verifyPassword(?string $password): void;
31 54
 
55
+    /**
56
+     * @return void
57
+     */
32 58
     public function subscribeToTheNewsletter(): void;
33 59
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Order/ThankYouPageInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -17,6 +17,9 @@  discard block
 block discarded – undo
17 17
 
18 18
 interface ThankYouPageInterface extends SymfonyPageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function goToOrderDetails();
21 24
 
22 25
     /**
@@ -41,5 +44,8 @@  discard block
 block discarded – undo
41 44
 
42 45
     public function hasRegistrationButton(): bool;
43 46
 
47
+    /**
48
+     * @return void
49
+     */
44 50
     public function createAccount(): void;
45 51
 }
Please login to merge, or discard this patch.