Completed
Push — 1.5-lint-container ( 339259...ddb6cd )
by Kamil
05:28
created
src/Sylius/Behat/Page/Shop/Account/LoginPageInterface.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -25,15 +25,20 @@
 block discarded – undo
25 25
      */
26 26
     public function hasValidationErrorWith($message);
27 27
 
28
+    /**
29
+     * @return void
30
+     */
28 31
     public function logIn();
29 32
 
30 33
     /**
31 34
      * @param string $password
35
+     * @return void
32 36
      */
33 37
     public function specifyPassword($password);
34 38
 
35 39
     /**
36 40
      * @param string $username
41
+     * @return void
37 42
      */
38 43
     public function specifyUsername($username);
39 44
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Ui/Shop/CheckoutContext.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -130,6 +130,8 @@
 block discarded – undo
130 130
     /**
131 131
      * @Given I have proceeded order with :shippingMethodName shipping method and :paymentMethodName payment
132 132
      * @When I proceed with :shippingMethodName shipping method and :paymentMethodName payment
133
+     * @param string $shippingMethodName
134
+     * @param string $paymentMethodName
133 135
      */
134 136
     public function iProceedOrderWithShippingMethodAndPayment($shippingMethodName, $paymentMethodName)
135 137
     {
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Setup/PromotionContext.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -354,6 +354,7 @@  discard block
 block discarded – undo
354 354
 
355 355
     /**
356 356
      * @Given /^([^"]+) gives ("[^"]+%") discount on shipping to every order$/
357
+     * @param integer $discount
357 358
      */
358 359
     public function itGivesPercentageDiscountOnShippingToEveryOrder(PromotionInterface $promotion, $discount)
359 360
     {
@@ -677,6 +678,7 @@  discard block
 block discarded – undo
677 678
 
678 679
     /**
679 680
      * @Given /^([^"]+) gives ("[^"]+%") discount on shipping to every order over ("(?:€|£|\$)[^"]+")$/
681
+     * @param integer $discount
680 682
      */
681 683
     public function itGivesDiscountOnShippingToEveryOrderOver(
682 684
         PromotionInterface $promotion,
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductOptionTranslationInterface.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 $name
30
+     * @return void
30 31
      */
31 32
     public function setName(?string $name): void;
32 33
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/PayumBundle/Request/ResolveNextRouteInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -6,11 +6,20 @@
 block discarded – undo
6 6
 
7 7
 interface ResolveNextRouteInterface
8 8
 {
9
+    /**
10
+     * @return string
11
+     */
9 12
     public function getRouteName(): ?string;
10 13
 
14
+    /**
15
+     * @return void
16
+     */
11 17
     public function setRouteName(string $routeName): void;
12 18
 
13 19
     public function getRouteParameters(): array;
14 20
 
21
+    /**
22
+     * @return void
23
+     */
15 24
     public function setRouteParameters(array $parameters): void;
16 25
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Updater/UnpaidOrdersStateUpdaterInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -15,5 +15,8 @@
 block discarded – undo
15 15
 
16 16
 interface UnpaidOrdersStateUpdaterInterface
17 17
 {
18
+    /**
19
+     * @return void
20
+     */
18 21
     public function cancel(): void;
19 22
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Order/Remover/ExpiredCartsRemoverInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -15,5 +15,8 @@
 block discarded – undo
15 15
 
16 16
 interface ExpiredCartsRemoverInterface
17 17
 {
18
+    /**
19
+     * @return void
20
+     */
18 21
     public function remove(): void;
19 22
 }
Please login to merge, or discard this patch.
src/Sylius/Component/User/Security/PasswordUpdaterInterface.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 PasswordUpdaterInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function updatePassword(CredentialsHolderInterface $user): void;
21 24
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Setup/ShippingContext.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -146,6 +146,7 @@
 block discarded – undo
146 146
 
147 147
     /**
148 148
      * @Given the store (also )allows shipping with :name
149
+     * @param string $name
149 150
      */
150 151
     public function theStoreAllowsShippingMethodWithName($name)
151 152
     {
Please login to merge, or discard this patch.