Completed
Push — snake-case-tests ( 55729f )
by Kamil
87:29 queued 51:35
created
Sylius/Component/Core/Test/Services/DefaultUnitedStatesChannelFactory.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -174,6 +174,8 @@  discard block
 block discarded – undo
174 174
     }
175 175
 
176 176
     /**
177
+     * @param string $code
178
+     * @param string $name
177 179
      * @return ChannelInterface
178 180
      */
179 181
     private function createChannel($code, $name)
@@ -197,6 +199,7 @@  discard block
 block discarded – undo
197 199
     }
198 200
 
199 201
     /**
202
+     * @param string $currencyCode
200 203
      * @return CurrencyInterface
201 204
      */
202 205
     private function provideCurrency($currencyCode = null)
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Product/ShowPageInterface.php 1 patch
Doc Comments   +9 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,6 +24,7 @@  discard block
 block discarded – undo
24 24
 {
25 25
     /**
26 26
      * @throws ElementNotFoundException
27
+     * @return void
27 28
      */
28 29
     public function addToCart();
29 30
 
@@ -31,6 +32,7 @@  discard block
 block discarded – undo
31 32
      * @param string $quantity
32 33
      *
33 34
      * @throws ElementNotFoundException
35
+     * @return void
34 36
      */
35 37
     public function addToCartWithQuantity($quantity);
36 38
 
@@ -38,6 +40,7 @@  discard block
 block discarded – undo
38 40
      * @param string $variant
39 41
      *
40 42
      * @throws ElementNotFoundException
43
+     * @return void
41 44
      */
42 45
     public function addToCartWithVariant($variant);
43 46
 
@@ -46,6 +49,7 @@  discard block
 block discarded – undo
46 49
      * @param string $optionValue
47 50
      *
48 51
      * @throws ElementNotFoundException
52
+     * @return void
49 53
      */
50 54
     public function addToCartWithOption(ProductOptionInterface $option, $optionValue);
51 55
 
@@ -56,6 +60,7 @@  discard block
 block discarded – undo
56 60
 
57 61
     /**
58 62
      * @param string $url
63
+     * @return void
59 64
      */
60 65
     public function visit($url);
61 66
 
@@ -67,7 +72,7 @@  discard block
 block discarded – undo
67 72
     public function getAttributeByName($attributeName);
68 73
 
69 74
     /**
70
-     * @return array
75
+     * @return \Behat\Mink\Element\NodeElement[]
71 76
      */
72 77
     public function getAttributes();
73 78
 
@@ -80,6 +85,7 @@  discard block
 block discarded – undo
80 85
 
81 86
     /**
82 87
      * @param int $timeout
88
+     * @return void
83 89
      */
84 90
     public function waitForValidationErrors($timeout);
85 91
 
@@ -123,11 +129,13 @@  discard block
 block discarded – undo
123 129
     /**
124 130
      * @param string $optionName
125 131
      * @param string $optionValue
132
+     * @return void
126 133
      */
127 134
     public function selectOption($optionName, $optionValue);
128 135
 
129 136
     /**
130 137
      * @param string $variantName
138
+     * @return void
131 139
      */
132 140
     public function selectVariant($variantName);
133 141
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Form/Extension/CountryTypeExtension.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
     }
94 94
 
95 95
     /**
96
-     * @param $code
96
+     * @param string $code
97 97
      *
98 98
      * @return null|string
99 99
      */
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
     }
104 104
 
105 105
     /**
106
-     * @return array
106
+     * @return string[]
107 107
      */
108 108
     private function getAvailableCountries()
109 109
     {
Please login to merge, or discard this patch.
Bundle/PayumBundle/Action/Paypal/ExpressCheckout/ConvertPaymentAction.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,6 @@
 block discarded – undo
103 103
 
104 104
     /**
105 105
      * @param int $price
106
-     * @param string $currencyCode
107 106
      *
108 107
      * @return float
109 108
      */
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Promotion/CreatePageInterface.php 1 patch
Doc Comments   +21 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,12 +42,14 @@  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
 
45 49
     /**
46 50
      * @param string $option
47 51
      * @param string $value
52
+     * @return void
48 53
      */
49 54
     public function fillRuleOption($option, $value);
50 55
 
@@ -52,11 +57,13 @@  discard block
 block discarded – undo
52 57
      * @param string $channelName
53 58
      * @param string $option
54 59
      * @param string $value
60
+     * @return void
55 61
      */
56 62
     public function fillRuleOptionForChannel($channelName, $option, $value);
57 63
 
58 64
     /**
59 65
      * @param string $actionName
66
+     * @return void
60 67
      */
61 68
     public function addAction($actionName);
62 69
 
@@ -64,12 +71,14 @@  discard block
 block discarded – undo
64 71
      * @param string $option
65 72
      * @param string $value
66 73
      * @param bool $multiple
74
+     * @return void
67 75
      */
68 76
     public function selectActionOption($option, $value, $multiple = false);
69 77
 
70 78
     /**
71 79
      * @param string $option
72 80
      * @param string $value
81
+     * @return void
73 82
      */
74 83
     public function fillActionOption($option, $value);
75 84
 
@@ -77,30 +86,41 @@  discard block
 block discarded – undo
77 86
      * @param string $channelName
78 87
      * @param string $option
79 88
      * @param string $value
89
+     * @return void
80 90
      */
81 91
     public function fillActionOptionForChannel($channelName, $option, $value);
82 92
 
83 93
     /**
84 94
      * @param string $limit
95
+     * @return void
85 96
      */
86 97
     public function fillUsageLimit($limit);
87 98
 
99
+    /**
100
+     * @return void
101
+     */
88 102
     public function makeExclusive();
89 103
 
104
+    /**
105
+     * @return void
106
+     */
90 107
     public function checkCouponBased();
91 108
 
92 109
     /**
93 110
      * @param string $name
111
+     * @return void
94 112
      */
95 113
     public function checkChannel($name);
96 114
 
97 115
     /**
98 116
      * @param \DateTime $dateTime
117
+     * @return void
99 118
      */
100 119
     public function setStartsAt(\DateTime $dateTime);
101 120
 
102 121
     /**
103 122
      * @param \DateTime $dateTime
123
+     * @return void
104 124
      */
105 125
     public function setEndsAt(\DateTime $dateTime);
106 126
 
@@ -115,6 +135,7 @@  discard block
 block discarded – undo
115 135
      * @param string $option
116 136
      * @param string $value
117 137
      * @param bool $multiple
138
+     * @return void
118 139
      */
119 140
     public function selectFilterOption($option, $value, $multiple = false);
120 141
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Remover/ReviewerReviewsRemover.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
      * @param ReviewInterface $review
76 76
      * @param ReviewableInterface[] $reviewSubjectsToRecalculate
77 77
      *
78
-     * @return array
78
+     * @return ReviewableInterface[]
79 79
      */
80 80
     private function removeReviewsAndExtractSubject(ReviewInterface $review, array $reviewSubjectsToRecalculate)
81 81
     {
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|\DateTime $checkoutCompletedAt
35
+     * @return void
35 36
      */
36 37
     public function setCheckoutCompletedAt(\DateTime $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.
src/Sylius/Behat/Page/Admin/Zone/CreatePageInterface.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -18,20 +18,26 @@  discard block
 block discarded – undo
18 18
  */
19 19
 interface CreatePageInterface extends BaseCreatePageInterface
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function addMember();
22 25
 
23 26
     /**
24 27
      * @param string $message
28
+     * @return boolean
25 29
      */
26 30
     public function checkValidationMessageForMembers($message);
27 31
 
28 32
     /**
29 33
      * @param string $name
34
+     * @return void
30 35
      */
31 36
     public function chooseMember($name);
32 37
 
33 38
     /**
34 39
      * @param string $scope
40
+     * @return void
35 41
      */
36 42
     public function selectScope($scope);
37 43
 
@@ -49,11 +55,13 @@  discard block
 block discarded – undo
49 55
 
50 56
     /**
51 57
      * @param string $name
58
+     * @return void
52 59
      */
53 60
     public function nameIt($name);
54 61
 
55 62
     /**
56 63
      * @param string $code
64
+     * @return void
57 65
      */
58 66
     public function specifyCode($code);
59 67
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/FixturesBundle/spec/Suite/SuiteSpec.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -84,6 +84,7 @@
 block discarded – undo
84 84
 
85 85
     /**
86 86
      * @param Collaborator[] ...$collaborators
87
+     * @param FixtureInterface $collaborators
87 88
      *
88 89
      * @return \Generator
89 90
      */
Please login to merge, or discard this patch.