Completed
Push — revert-symfony-336 ( 87e565 )
by Kamil
36:02
created
src/Sylius/Behat/Page/Admin/Order/IndexPageInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -20,31 +20,37 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param \DateTimeInterface $dateTime
23
+     * @return void
23 24
      */
24 25
     public function specifyFilterDateFrom(\DateTimeInterface $dateTime);
25 26
 
26 27
     /**
27 28
      * @param \DateTimeInterface $dateTime
29
+     * @return void
28 30
      */
29 31
     public function specifyFilterDateTo(\DateTimeInterface $dateTime);
30 32
 
31 33
     /**
32 34
      * @param string $channelName
35
+     * @return void
33 36
      */
34 37
     public function chooseChannelFilter($channelName);
35 38
 
36 39
     /**
37 40
      * @param string $currencyName
41
+     * @return void
38 42
      */
39 43
     public function chooseCurrencyFilter($currencyName);
40 44
 
41 45
     /**
42 46
      * @param string $total
47
+     * @return void
43 48
      */
44 49
     public function specifyFilterTotalGreaterThan($total);
45 50
 
46 51
     /**
47 52
      * @param string $total
53
+     * @return void
48 54
      */
49 55
     public function specifyFilterTotalLessThan($total);
50 56
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Promotion/CreatePageInterface.php 1 patch
Doc Comments   +22 added lines patch added patch discarded remove patch
@@ -22,16 +22,19 @@  discard block
 block discarded – undo
22 22
 {
23 23
     /**
24 24
      * @param string $code
25
+     * @return void
25 26
      */
26 27
     public function specifyCode($code);
27 28
 
28 29
     /**
29 30
      * @param string $name
31
+     * @return void
30 32
      */
31 33
     public function nameIt($name);
32 34
 
33 35
     /**
34 36
      * @param string $ruleName
37
+     * @return void
35 38
      */
36 39
     public function addRule($ruleName);
37 40
 
@@ -39,6 +42,7 @@  discard block
 block discarded – undo
39 42
      * @param string $option
40 43
      * @param string $value
41 44
      * @param bool $multiple
45
+     * @return void
42 46
      */
43 47
     public function selectRuleOption($option, $value, $multiple = false);
44 48
 
@@ -46,12 +50,14 @@  discard block
 block discarded – undo
46 50
      * @param string $option
47 51
      * @param string|string[] $value
48 52
      * @param bool $multiple
53
+     * @return void
49 54
      */
50 55
     public function selectAutocompleteRuleOption($option, $value, $multiple = false);
51 56
 
52 57
     /**
53 58
      * @param string $option
54 59
      * @param string $value
60
+     * @return void
55 61
      */
56 62
     public function fillRuleOption($option, $value);
57 63
 
@@ -59,11 +65,13 @@  discard block
 block discarded – undo
59 65
      * @param string $channelName
60 66
      * @param string $option
61 67
      * @param string $value
68
+     * @return void
62 69
      */
63 70
     public function fillRuleOptionForChannel($channelName, $option, $value);
64 71
 
65 72
     /**
66 73
      * @param string $actionName
74
+     * @return void
67 75
      */
68 76
     public function addAction($actionName);
69 77
 
@@ -71,12 +79,14 @@  discard block
 block discarded – undo
71 79
      * @param string $option
72 80
      * @param string $value
73 81
      * @param bool $multiple
82
+     * @return void
74 83
      */
75 84
     public function selectActionOption($option, $value, $multiple = false);
76 85
 
77 86
     /**
78 87
      * @param string $option
79 88
      * @param string $value
89
+     * @return void
80 90
      */
81 91
     public function fillActionOption($option, $value);
82 92
 
@@ -84,30 +94,41 @@  discard block
 block discarded – undo
84 94
      * @param string $channelName
85 95
      * @param string $option
86 96
      * @param string $value
97
+     * @return void
87 98
      */
88 99
     public function fillActionOptionForChannel($channelName, $option, $value);
89 100
 
90 101
     /**
91 102
      * @param string $limit
103
+     * @return void
92 104
      */
93 105
     public function fillUsageLimit($limit);
94 106
 
107
+    /**
108
+     * @return void
109
+     */
95 110
     public function makeExclusive();
96 111
 
112
+    /**
113
+     * @return void
114
+     */
97 115
     public function checkCouponBased();
98 116
 
99 117
     /**
100 118
      * @param string $name
119
+     * @return void
101 120
      */
102 121
     public function checkChannel($name);
103 122
 
104 123
     /**
105 124
      * @param \DateTimeInterface $dateTime
125
+     * @return void
106 126
      */
107 127
     public function setStartsAt(\DateTimeInterface $dateTime);
108 128
 
109 129
     /**
110 130
      * @param \DateTimeInterface $dateTime
131
+     * @return void
111 132
      */
112 133
     public function setEndsAt(\DateTimeInterface $dateTime);
113 134
 
@@ -122,6 +143,7 @@  discard block
 block discarded – undo
122 143
      * @param string $option
123 144
      * @param string|string[] $value
124 145
      * @param bool $multiple
146
+     * @return void
125 147
      */
126 148
     public function selectAutoCompleteFilterOption($option, $value, $multiple = false);
127 149
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Promotion/UpdatePageInterface.php 1 patch
Doc Comments   +14 added lines patch added patch discarded remove patch
@@ -22,6 +22,7 @@  discard block
 block discarded – undo
22 22
 
23 23
     /**
24 24
      * @param int|null $priority
25
+     * @return void
25 26
      */
26 27
     public function setPriority($priority);
27 28
 
@@ -32,6 +33,7 @@  discard block
 block discarded – undo
32 33
 
33 34
     /**
34 35
      * @param string $name
36
+     * @return void
35 37
      */
36 38
     public function nameIt($name);
37 39
 
@@ -49,35 +51,47 @@  discard block
 block discarded – undo
49 51
 
50 52
     /**
51 53
      * @param string $limit
54
+     * @return void
52 55
      */
53 56
     public function fillUsageLimit($limit);
54 57
 
58
+    /**
59
+     * @return void
60
+     */
55 61
     public function makeExclusive();
56 62
 
63
+    /**
64
+     * @return void
65
+     */
57 66
     public function checkCouponBased();
58 67
 
59 68
     /**
60 69
      * @param string $name
70
+     * @return void
61 71
      */
62 72
     public function checkChannel($name);
63 73
 
64 74
     /**
65 75
      * @param \DateTimeInterface $dateTime
76
+     * @return void
66 77
      */
67 78
     public function setStartsAt(\DateTimeInterface $dateTime);
68 79
 
69 80
     /**
70 81
      * @param \DateTimeInterface $dateTime
82
+     * @return void
71 83
      */
72 84
     public function setEndsAt(\DateTimeInterface $dateTime);
73 85
 
74 86
     /**
75 87
      * {@inheritdoc}
88
+     * @return boolean
76 89
      */
77 90
     public function hasStartsAt(\DateTimeInterface $dateTime);
78 91
 
79 92
     /**
80 93
      * {@inheritdoc}
94
+     * @return boolean
81 95
      */
82 96
     public function hasEndsAt(\DateTimeInterface $dateTime);
83 97
 }
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 \DateTimeInterface $date
29
+     * @return void
28 30
      */
29 31
     public function setExpiresAt(\DateTimeInterface $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 \DateTimeInterface $date
61
+     * @return void
56 62
      */
57 63
     public function setExpiresAt(\DateTimeInterface $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 \DateTimeInterface $date
34
+     * @return void
33 35
      */
34 36
     public function setExpiresAt(\DateTimeInterface $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/Component/Customer/Model/CustomerInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -30,6 +30,7 @@  discard block
 block discarded – undo
30 30
 
31 31
     /**
32 32
      * @param  string $email
33
+     * @return void
33 34
      */
34 35
     public function setEmail($email);
35 36
 
@@ -42,6 +43,7 @@  discard block
 block discarded – undo
42 43
 
43 44
     /**
44 45
      * @param  string $emailCanonical
46
+     * @return void
45 47
      */
46 48
     public function setEmailCanonical($emailCanonical);
47 49
 
@@ -57,6 +59,7 @@  discard block
 block discarded – undo
57 59
 
58 60
     /**
59 61
      * @param  string $firstName
62
+     * @return void
60 63
      */
61 64
     public function setFirstName($firstName);
62 65
 
@@ -67,6 +70,7 @@  discard block
 block discarded – undo
67 70
 
68 71
     /**
69 72
      * @param  string $lastName
73
+     * @return void
70 74
      */
71 75
     public function setLastName($lastName);
72 76
 
@@ -77,6 +81,7 @@  discard block
 block discarded – undo
77 81
 
78 82
     /**
79 83
      * @param  \DateTimeInterface $birthday
84
+     * @return void
80 85
      */
81 86
     public function setBirthday(\DateTimeInterface $birthday = null);
82 87
 
@@ -89,6 +94,7 @@  discard block
 block discarded – undo
89 94
      * You should use interface constants for that.
90 95
      *
91 96
      * @param  string $gender
97
+     * @return void
92 98
      */
93 99
     public function setGender($gender);
94 100
 
@@ -109,6 +115,7 @@  discard block
 block discarded – undo
109 115
 
110 116
     /**
111 117
      * @param CustomerGroupInterface $group
118
+     * @return void
112 119
      */
113 120
     public function setGroup(CustomerGroupInterface $group = null);
114 121
 
@@ -119,6 +126,7 @@  discard block
 block discarded – undo
119 126
 
120 127
     /**
121 128
      * @param string $phoneNumber
129
+     * @return void
122 130
      */
123 131
     public function setPhoneNumber($phoneNumber);
124 132
 
@@ -129,6 +137,7 @@  discard block
 block discarded – undo
129 137
 
130 138
     /**
131 139
      * @param bool $subscribedToNewsletter
140
+     * @return void
132 141
      */
133 142
     public function setSubscribedToNewsletter($subscribedToNewsletter);
134 143
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Order/Model/OrderInterface.php 1 patch
Doc Comments   +16 added lines patch added patch discarded remove patch
@@ -32,6 +32,7 @@  discard block
 block discarded – undo
32 32
 
33 33
     /**
34 34
      * @param null|\DateTimeInterface $checkoutCompletedAt
35
+     * @return void
35 36
      */
36 37
     public function setCheckoutCompletedAt(\DateTimeInterface $checkoutCompletedAt = null);
37 38
 
@@ -40,6 +41,9 @@  discard block
 block discarded – undo
40 41
      */
41 42
     public function isCheckoutCompleted();
42 43
 
44
+    /**
45
+     * @return void
46
+     */
43 47
     public function completeCheckout();
44 48
 
45 49
     /**
@@ -49,6 +53,7 @@  discard block
 block discarded – undo
49 53
 
50 54
     /**
51 55
      * @param string
56
+     * @return void
52 57
      */
53 58
     public function setNumber($number);
54 59
 
@@ -59,6 +64,7 @@  discard block
 block discarded – undo
59 64
 
60 65
     /**
61 66
      * @param string $notes
67
+     * @return void
62 68
      */
63 69
     public function setNotes($notes);
64 70
 
@@ -67,6 +73,9 @@  discard block
 block discarded – undo
67 73
      */
68 74
     public function getItems();
69 75
 
76
+    /**
77
+     * @return void
78
+     */
70 79
     public function clearItems();
71 80
 
72 81
     /**
@@ -76,11 +85,13 @@  discard block
 block discarded – undo
76 85
 
77 86
     /**
78 87
      * @param OrderItemInterface $item
88
+     * @return void
79 89
      */
80 90
     public function addItem(OrderItemInterface $item);
81 91
 
82 92
     /**
83 93
      * @param OrderItemInterface $item
94
+     * @return void
84 95
      */
85 96
     public function removeItem(OrderItemInterface $item);
86 97
 
@@ -96,6 +107,9 @@  discard block
 block discarded – undo
96 107
      */
97 108
     public function getItemsTotal();
98 109
 
110
+    /**
111
+     * @return void
112
+     */
99 113
     public function recalculateItemsTotal();
100 114
 
101 115
     /**
@@ -115,6 +129,7 @@  discard block
 block discarded – undo
115 129
 
116 130
     /**
117 131
      * @param string $state
132
+     * @return void
118 133
      */
119 134
     public function setState($state);
120 135
 
@@ -139,6 +154,7 @@  discard block
 block discarded – undo
139 154
 
140 155
     /**
141 156
      * @param string|null $type
157
+     * @return void
142 158
      */
143 159
     public function removeAdjustmentsRecursively($type = null);
144 160
 }
Please login to merge, or discard this patch.
Promotion/Generator/PromotionCouponGeneratorInstructionInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@  discard block
 block discarded – undo
23 23
 
24 24
     /**
25 25
      * @param int $amount
26
+     * @return void
26 27
      */
27 28
     public function setAmount($amount);
28 29
 
@@ -33,6 +34,7 @@  discard block
 block discarded – undo
33 34
 
34 35
     /**
35 36
      * @param int $codeLength
37
+     * @return void
36 38
      */
37 39
     public function setCodeLength($codeLength);
38 40
 
@@ -43,6 +45,7 @@  discard block
 block discarded – undo
43 45
 
44 46
     /**
45 47
      * @param \DateTimeInterface $expiresAt
48
+     * @return void
46 49
      */
47 50
     public function setExpiresAt(\DateTimeInterface $expiresAt = null);
48 51
 
@@ -53,6 +56,7 @@  discard block
 block discarded – undo
53 56
 
54 57
     /**
55 58
      * @param int $usageLimit
59
+     * @return void
56 60
      */
57 61
     public function setUsageLimit($usageLimit);
58 62
 }
Please login to merge, or discard this patch.