Completed
Branch master (429264)
by Kamil
37:02
created
src/Sylius/Behat/Page/Shop/Checkout/SecurityStepInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -24,6 +24,7 @@  discard block
 block discarded – undo
24 24
      * @param string $password
25 25
      *
26 26
      * @throws ElementNotFoundException
27
+     * @return void
27 28
      */
28 29
     public function logInAsExistingUser($login, $password);
29 30
 
@@ -31,6 +32,7 @@  discard block
 block discarded – undo
31 32
      * @param string $email
32 33
      *
33 34
      * @throws ElementNotFoundException
35
+     * @return void
34 36
      */
35 37
     public function proceedAsGuest($email);
36 38
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Checkout/ShippingPageInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@  discard block
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param string $shippingMethod
23
+     * @return void
23 24
      */
24 25
     public function selectShippingMethod($shippingMethod);
25 26
 
@@ -35,5 +36,8 @@  discard block
 block discarded – undo
35 36
      */
36 37
     public function hasNoShippingMethodsMessage();
37 38
 
39
+    /**
40
+     * @return void
41
+     */
38 42
     public function nextStep();
39 43
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Checkout/ShippingStepInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -20,8 +20,12 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param string $shippingMethod
23
+     * @return void
23 24
      */
24 25
     public function selectShippingMethod($shippingMethod);
25 26
 
27
+    /**
28
+     * @return void
29
+     */
26 30
     public function continueCheckout();
27 31
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Checkout/ThankYouPageInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -30,6 +30,7 @@
 block discarded – undo
30 30
      * @param array $parameters
31 31
      *
32 32
      * @throws \InvalidArgumentException
33
+     * @return void
33 34
      */
34 35
     public function waitForResponse($timeout, array $parameters = []);
35 36
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Order/OrderPaymentsPageInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@  discard block
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param PaymentInterface $payment
23
+     * @return void
23 24
      */
24 25
     public function clickPayButtonForGivenPayment(PaymentInterface $payment);
25 26
 
@@ -28,6 +29,7 @@  discard block
 block discarded – undo
28 29
      * @param array $parameters
29 30
      *
30 31
      * @throws \InvalidArgumentException
32
+     * @return void
31 33
      */
32 34
     public function waitForResponse($timeout, array $parameters);
33 35
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Product/ShowPageInterface.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@  discard block
 block discarded – undo
23 23
 {
24 24
     /**
25 25
      * @throws ElementNotFoundException
26
+     * @return void
26 27
      */
27 28
     public function addToCart();
28 29
 
@@ -30,6 +31,7 @@  discard block
 block discarded – undo
30 31
      * @param string $quantity
31 32
      *
32 33
      * @throws ElementNotFoundException
34
+     * @return void
33 35
      */
34 36
     public function addToCartWithQuantity($quantity);
35 37
 
@@ -37,6 +39,7 @@  discard block
 block discarded – undo
37 39
      * @param string $variant
38 40
      *
39 41
      * @throws ElementNotFoundException
42
+     * @return void
40 43
      */
41 44
     public function addToCartWithVariant($variant);
42 45
 
@@ -45,6 +48,7 @@  discard block
 block discarded – undo
45 48
      * @param string $optionValue
46 49
      *
47 50
      * @throws ElementNotFoundException
51
+     * @return void
48 52
      */
49 53
     public function addToCartWithOption(OptionInterface $option, $optionValue);
50 54
 
@@ -55,6 +59,7 @@  discard block
 block discarded – undo
55 59
 
56 60
     /**
57 61
      * @param string $url
62
+     * @return void
58 63
      */
59 64
     public function visit($url);
60 65
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/User/RegisterPageInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param string $email
23
+     * @return void
23 24
      */
24 25
     public function register($email);
25 26
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Service/Accessor/TableAccessor.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,8 +91,8 @@
 block discarded – undo
91 91
     }
92 92
 
93 93
     /**
94
-     * @param array $columns
95
-     * @param array $fields
94
+     * @param NodeElement[] $columns
95
+     * @param string[] $fields
96 96
      *
97 97
      * @return bool
98 98
      */
Please login to merge, or discard this patch.
src/Sylius/Behat/Service/Mocker/PaypalApiMocker.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
 
103 103
     /**
104 104
      * @param int $statusCode
105
-     * @param mixed $streamMock
105
+     * @param Mock $streamMock
106 106
      *
107 107
      * @return Mock
108 108
      */
Please login to merge, or discard this patch.