Completed
Push — enigma ( 1853e7 )
by Kamil
24:39
created
src/Sylius/Behat/Page/Admin/Crud/UpdatePageInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -33,5 +33,8 @@
 block discarded – undo
33 33
      */
34 34
     public function hasResourceValues(array $parameters);
35 35
 
36
+    /**
37
+     * @return void
38
+     */
36 39
     public function saveChanges();
37 40
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Currency/CreatePageInterface.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 string $name
23
+     * @return void
23 24
      */
24 25
     public function chooseName($name);
25 26
 
26 27
     /**
27 28
      * @param float $exchangeRate
29
+     * @return void
28 30
      */
29 31
     public function specifyExchangeRate($exchangeRate);
30 32
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Locale/CreatePageInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@
 block discarded – undo
23 23
      * @param string $name
24 24
      *
25 25
      * @throws ElementNotFoundException
26
+     * @return void
26 27
      */
27 28
     public function chooseName($name);
28 29
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ProductAttribute/UpdatePageInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -21,6 +21,7 @@
 block discarded – undo
21 21
     /**
22 22
      * @param string $name
23 23
      * @param string $language
24
+     * @return void
24 25
      */
25 26
     public function changeName($name, $language);
26 27
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ProductOption/CreatePageInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -20,23 +20,27 @@
 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
28 29
      * @param string $language
30
+     * @return void
29 31
      */
30 32
     public function nameItIn($name, $language);
31 33
 
32 34
     /**
33 35
      * @param string $code
34 36
      * @param string $value
37
+     * @return void
35 38
      */
36 39
     public function addOptionValue($code, $value);
37 40
 
38 41
     /**
39 42
      * @param string $message
43
+     * @return boolean
40 44
      */
41 45
     public function checkValidationMessageForOptionValues($message);
42 46
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ProductOption/UpdatePageInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -26,22 +26,26 @@
 block discarded – undo
26 26
     /**
27 27
      * @param string $name
28 28
      * @param string $languageCode
29
+     * @return void
29 30
      */
30 31
     public function nameItIn($name, $languageCode);
31 32
 
32 33
     /**
33 34
      * @param string $optionValue
35
+     * @return boolean
34 36
      */
35 37
     public function isThereOptionValue($optionValue);
36 38
 
37 39
     /**
38 40
      * @param string $code
39 41
      * @param string $value
42
+     * @return void
40 43
      */
41 44
     public function addOptionValue($code, $value);
42 45
 
43 46
     /**
44 47
      * @param string $optionValue
48
+     * @return void
45 49
      */
46 50
     public function removeOptionValue($optionValue);
47 51
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/PromotionCoupon/CreatePageInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -20,21 +20,25 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param int $limit
23
+     * @return void
23 24
      */
24 25
     public function setCustomerUsageLimit($limit);
25 26
 
26 27
     /**
27 28
      * @param \DateTime $date
29
+     * @return void
28 30
      */
29 31
     public function setExpiresAt(\DateTime $date);
30 32
 
31 33
     /**
32 34
      * @param string $code
35
+     * @return void
33 36
      */
34 37
     public function specifyCode($code);
35 38
 
36 39
     /**
37 40
      * @param int $limit
41
+     * @return void
38 42
      */
39 43
     public function setUsageLimit($limit);
40 44
 }
Please login to merge, or discard this patch.
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.