Completed
Push — locale-in-url-docs ( 2a60a6...8c212f )
by Kamil
28:37 queued 09:45
created
src/Sylius/Behat/Page/Admin/PaymentMethod/CreatePageInterface.php 1 patch
Doc Comments   +13 added lines patch added patch discarded remove patch
@@ -18,39 +18,52 @@
 block discarded – undo
18 18
  */
19 19
 interface CreatePageInterface extends BaseCreatePageInterface
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function enable();
25
+
26
+    /**
27
+     * @return void
28
+     */
22 29
     public function disable();
23 30
 
24 31
     /**
25 32
      * @param string $name
26 33
      * @param string $languageCode
34
+     * @return void
27 35
      */
28 36
     public function nameIt($name, $languageCode);
29 37
 
30 38
     /**
31 39
      * @param string $code
40
+     * @return void
32 41
      */
33 42
     public function specifyCode($code);
34 43
 
35 44
     /**
36 45
      * @param string $gateway
46
+     * @return void
37 47
      */
38 48
     public function chooseGateway($gateway);
39 49
 
40 50
     /**
41 51
      * @param string $channelName
52
+     * @return void
42 53
      */
43 54
     public function checkChannel($channelName);
44 55
 
45 56
     /**
46 57
      * @param string $description
47 58
      * @param string $languageCode
59
+     * @return void
48 60
      */
49 61
     public function describeIt($description, $languageCode);
50 62
 
51 63
     /**
52 64
      * @param string $instructions
53 65
      * @param string $languageCode
66
+     * @return void
54 67
      */
55 68
     public function setInstructions($instructions, $languageCode);
56 69
 
Please login to merge, or discard this patch.
Bundle/TaxonomyBundle/Form/EventListener/BuildTaxonFormSubscriber.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
     /**
72 72
      * @param TaxonInterface $taxon
73 73
      *
74
-     * @return callable|null
74
+     * @return null|\Closure
75 75
      */
76 76
     private function getFilterTaxonOption(TaxonInterface $taxon)
77 77
     {
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Setup/PromotionContext.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -314,6 +314,7 @@  discard block
 block discarded – undo
314 314
 
315 315
     /**
316 316
      * @Given /^([^"]+) gives ("[^"]+%") discount on shipping to every order$/
317
+     * @param integer $discount
317 318
      */
318 319
     public function itGivesPercentageDiscountOnShippingToEveryOrder(PromotionInterface $promotion, $discount)
319 320
     {
@@ -634,7 +635,7 @@  discard block
 block discarded – undo
634 635
     }
635 636
 
636 637
     /**
637
-     * @param array $taxonCodes
638
+     * @param string[] $taxonCodes
638 639
      *
639 640
      * @return array
640 641
      */
@@ -644,7 +645,7 @@  discard block
 block discarded – undo
644 645
     }
645 646
 
646 647
     /**
647
-     * @param array $productCodes
648
+     * @param string[] $productCodes
648 649
      *
649 650
      * @return array
650 651
      */
Please login to merge, or discard this patch.
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.