Completed
Push — locale-in-url ( 6d9eda )
by Kamil
23:08
created
src/Sylius/Behat/Page/Admin/PromotionCoupon/GeneratePageInterface.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -39,25 +39,32 @@
 block discarded – undo
39 39
      */
40 40
     public function checkGenerationValidation($message);
41 41
 
42
+    /**
43
+     * @return void
44
+     */
42 45
     public function generate();
43 46
 
44 47
     /**
45 48
      * @param int $amount
49
+     * @return void
46 50
      */
47 51
     public function specifyAmount($amount);
48 52
 
49 53
     /**
50 54
      * @param int $codeLength
55
+     * @return void
51 56
      */
52 57
     public function specifyCodeLength($codeLength);
53 58
 
54 59
     /**
55 60
      * @param \DateTime $date
61
+     * @return void
56 62
      */
57 63
     public function setExpiresAt(\DateTime $date);
58 64
 
59 65
     /**
60 66
      * @param int $limit
67
+     * @return void
61 68
      */
62 69
     public function setUsageLimit($limit);
63 70
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/PromotionCoupon/UpdatePageInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -25,16 +25,19 @@
 block discarded – undo
25 25
 
26 26
     /**
27 27
      * @param int $limit
28
+     * @return void
28 29
      */
29 30
     public function setCustomerUsageLimit($limit);
30 31
 
31 32
     /**
32 33
      * @param \DateTime $date
34
+     * @return void
33 35
      */
34 36
     public function setExpiresAt(\DateTime $date);
35 37
 
36 38
     /**
37 39
      * @param int $limit
40
+     * @return void
38 41
      */
39 42
     public function setUsageLimit($limit);
40 43
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/TaxCategory/CreatePageInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -20,16 +20,19 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param string $code
23
+     * @return void
23 24
      */
24 25
     public function specifyCode($code);
25 26
 
26 27
     /**
27 28
      * @param string $name
29
+     * @return void
28 30
      */
29 31
     public function nameIt($name);
30 32
 
31 33
     /**
32 34
      * @param string $description
35
+     * @return void
33 36
      */
34 37
     public function describeItAs($description);
35 38
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/TaxCategory/UpdatePageInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@
 block discarded – undo
25 25
 
26 26
     /**
27 27
      * @param string $name
28
+     * @return void
28 29
      */
29 30
     public function nameIt($name);
30 31
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Zone/UpdatePageInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -21,6 +21,7 @@  discard block
 block discarded – undo
21 21
 {
22 22
     /**
23 23
      * @param string $name
24
+     * @return void
24 25
      */
25 26
     public function nameIt($name);
26 27
 
@@ -43,6 +44,7 @@  discard block
 block discarded – undo
43 44
 
44 45
     /**
45 46
      * @param ZoneMemberInterface $zoneMember
47
+     * @return void
46 48
      */
47 49
     public function removeMember(ZoneMemberInterface $zoneMember);
48 50
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/External/PaypalExpressCheckoutPageInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -23,12 +23,14 @@
 block discarded – undo
23 23
     /**
24 24
      * @throws UnsupportedDriverActionException
25 25
      * @throws DriverException
26
+     * @return void
26 27
      */
27 28
     public function pay();
28 29
 
29 30
     /**
30 31
      * @throws UnsupportedDriverActionException
31 32
      * @throws DriverException
33
+     * @return void
32 34
      */
33 35
     public function cancel();
34 36
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Page.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -243,7 +243,7 @@
 block discarded – undo
243 243
     }
244 244
 
245 245
     /**
246
-     * @param string|array $selector
246
+     * @param string $selector
247 247
      * @param SelectorsHandler $selectorsHandler
248 248
      *
249 249
      * @return string
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/PageInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -20,11 +20,13 @@  discard block
 block discarded – undo
20 20
      * @param array $urlParameters
21 21
      *
22 22
      * @throws UnexpectedPageException If page is not opened successfully
23
+     * @return void
23 24
      */
24 25
     public function open(array $urlParameters = []);
25 26
 
26 27
     /**
27 28
      * @param array $urlParameters
29
+     * @return void
28 30
      */
29 31
     public function tryToOpen(array $urlParameters = []);
30 32
 
@@ -32,6 +34,7 @@  discard block
 block discarded – undo
32 34
      * @param array $urlParameters
33 35
      *
34 36
      * @throws UnexpectedPageException
37
+     * @return void
35 38
      */
36 39
     public function verify(array $urlParameters = []);
37 40
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Account/ChangePasswordPageInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -21,16 +21,19 @@
 block discarded – undo
21 21
 {
22 22
     /**
23 23
      * @param string $password
24
+     * @return void
24 25
      */
25 26
     public function specifyCurrentPassword($password);
26 27
 
27 28
     /**
28 29
      * @param string $password
30
+     * @return void
29 31
      */
30 32
     public function specifyNewPassword($password);
31 33
 
32 34
     /**
33 35
      * @param string $password
36
+     * @return void
34 37
      */
35 38
     public function specifyConfirmationPassword($password);
36 39
 
Please login to merge, or discard this patch.