Completed
Push — remove-codeowners ( c2a3b4 )
by Kamil
35:29 queued 21:05
created
src/Sylius/Behat/Page/Admin/Product/CreateSimpleProductPageInterface.php 1 patch
Doc Comments   +15 added lines patch added patch discarded remove patch
@@ -23,39 +23,46 @@  discard block
 block discarded – undo
23 23
     /**
24 24
      * @param string $channelName
25 25
      * @param int $price
26
+     * @return void
26 27
      */
27 28
     public function specifyPrice($channelName, $price);
28 29
 
29 30
     /**
30 31
      * @param string $channelName
31 32
      * @param int $originalPrice
33
+     * @return void
32 34
      */
33 35
     public function specifyOriginalPrice($channelName, $originalPrice);
34 36
 
35 37
     /**
36 38
      * @param string $name
39
+     * @return void
37 40
      */
38 41
     public function choosePricingCalculator($name);
39 42
 
40 43
     /**
41 44
      * @param string $channelName
45
+     * @return void
42 46
      */
43 47
     public function checkChannel($channelName);
44 48
 
45 49
     /**
46 50
      * @param string $code
51
+     * @return void
47 52
      */
48 53
     public function specifyCode($code);
49 54
 
50 55
     /**
51 56
      * @param string $name
52 57
      * @param string $localeCode
58
+     * @return void
53 59
      */
54 60
     public function nameItIn($name, $localeCode);
55 61
 
56 62
     /**
57 63
      * @param string $slug
58 64
      * @param string $locale
65
+     * @return void
59 66
      */
60 67
     public function specifySlugIn($slug, $locale);
61 68
 
@@ -63,6 +70,7 @@  discard block
 block discarded – undo
63 70
      * @param string $attributeName
64 71
      * @param string $value
65 72
      * @param string $localeCode
73
+     * @return void
66 74
      */
67 75
     public function addAttribute($attributeName, $value, $localeCode);
68 76
 
@@ -77,39 +85,46 @@  discard block
 block discarded – undo
77 85
     /**
78 86
      * @param string $attributeName
79 87
      * @param string $localeCode
88
+     * @return void
80 89
      */
81 90
     public function removeAttribute($attributeName, $localeCode);
82 91
 
83 92
     /**
84 93
      * @param string $path
85 94
      * @param string $type
95
+     * @return void
86 96
      */
87 97
     public function attachImage($path, $type = null);
88 98
 
89 99
     /**
90 100
      * @param ProductAssociationTypeInterface $productAssociationType
91 101
      * @param string[] $productsNames
102
+     * @return void
92 103
      */
93 104
     public function associateProducts(ProductAssociationTypeInterface $productAssociationType, array $productsNames);
94 105
 
95 106
     /**
96 107
      * @param string $productName
97 108
      * @param ProductAssociationTypeInterface $productAssociationType
109
+     * @return void
98 110
      */
99 111
     public function removeAssociatedProduct($productName, ProductAssociationTypeInterface $productAssociationType);
100 112
 
101 113
     /**
102 114
      * @param string $locale
115
+     * @return void
103 116
      */
104 117
     public function activateLanguageTab($locale);
105 118
 
106 119
     /**
107 120
      * @param string $shippingCategoryName
121
+     * @return void
108 122
      */
109 123
     public function selectShippingCategory($shippingCategoryName);
110 124
 
111 125
     /**
112 126
      * @param bool $isShippingRequired
127
+     * @return void
113 128
      */
114 129
     public function setShippingRequired($isShippingRequired);
115 130
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ProductVariant/CreatePageInterface.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -22,12 +22,14 @@  discard block
 block discarded – undo
22 22
     /**
23 23
      * @param int $price
24 24
      * @param string $channelName
25
+     * @return void
25 26
      */
26 27
     public function specifyPrice($price, $channelName);
27 28
 
28 29
     /**
29 30
      * @param int $originalPrice
30 31
      * @param string $channelName
32
+     * @return void
31 33
      */
32 34
     public function specifyOriginalPrice($originalPrice, $channelName);
33 35
 
@@ -36,33 +38,39 @@  discard block
 block discarded – undo
36 38
      * @param int $width
37 39
      * @param int $depth
38 40
      * @param int $weight
41
+     * @return void
39 42
      */
40 43
     public function specifyHeightWidthDepthAndWeight($height, $width, $depth, $weight);
41 44
 
42 45
     /**
43 46
      * @param string $code
47
+     * @return void
44 48
      */
45 49
     public function specifyCode($code);
46 50
 
47 51
     /**
48 52
      * @param int $currentStock
53
+     * @return void
49 54
      */
50 55
     public function specifyCurrentStock($currentStock);
51 56
 
52 57
     /**
53 58
      * @param string $name
54 59
      * @param string $language
60
+     * @return void
55 61
      */
56 62
     public function nameItIn($name, $language);
57 63
 
58 64
     /**
59 65
      * @param string $optionName
60 66
      * @param string $optionValue
67
+     * @return void
61 68
      */
62 69
     public function selectOption($optionName, $optionValue);
63 70
 
64 71
     /**
65 72
      * @param string $name
73
+     * @return void
66 74
      */
67 75
     public function choosePricingCalculator($name);
68 76
 
@@ -73,6 +81,7 @@  discard block
 block discarded – undo
73 81
 
74 82
     /**
75 83
      * @param string $shippingCategoryName
84
+     * @return void
76 85
      */
77 86
     public function selectShippingCategory($shippingCategoryName);
78 87
 
@@ -83,6 +92,7 @@  discard block
 block discarded – undo
83 92
 
84 93
     /**
85 94
      * @param bool $isShippingRequired
95
+     * @return void
86 96
      */
87 97
     public function setShippingRequired($isShippingRequired);
88 98
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Product/UpdateConfigurableProductPage.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -240,7 +240,7 @@
 block discarded – undo
240 240
     /**
241 241
      * @param string $type
242 242
      *
243
-     * @return NodeElement
243
+     * @return string
244 244
      */
245 245
     private function getImageElementByType($type)
246 246
     {
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Product/UpdateSimpleProductPage.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -428,6 +428,7 @@  discard block
 block discarded – undo
428 428
 
429 429
     /**
430 430
      * {@inheritdoc}
431
+     * @param string $name
431 432
      */
432 433
     protected function getElement($name, array $parameters = [])
433 434
     {
@@ -507,7 +508,7 @@  discard block
 block discarded – undo
507 508
     /**
508 509
      * @param string $type
509 510
      *
510
-     * @return NodeElement
511
+     * @return string
511 512
      */
512 513
     private function getImageElementByType($type)
513 514
     {
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Page.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
     /**
134 134
      * @param string $name
135 135
      *
136
-     * @return NodeElement
136
+     * @return string
137 137
      */
138 138
     protected function getParameter($name)
139 139
     {
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
     }
243 243
 
244 244
     /**
245
-     * @param string|array $selector
245
+     * @param string $selector
246 246
      * @param SelectorsHandler $selectorsHandler
247 247
      *
248 248
      * @return string
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Cart/SummaryPage.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -299,7 +299,7 @@
 block discarded – undo
299 299
 
300 300
     /**
301 301
      * @param string $attributeName
302
-     * @param string|array $selector
302
+     * @param string $selector
303 303
      *
304 304
      * @return bool
305 305
      *
Please login to merge, or discard this patch.
Bundle/CoreBundle/Validator/Constraints/HasEnabledEntityValidator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@
 block discarded – undo
143 143
     }
144 144
 
145 145
     /**
146
-     * @param ObjectManager $objectManager
146
+     * @param ObjectManager|null $objectManager
147 147
      * @param object $entity
148 148
      * @param string $enabledPropertyPath
149 149
      *
Please login to merge, or discard this patch.
src/Sylius/Bundle/ResourceBundle/Controller/Parameters.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -19,6 +19,7 @@
 block discarded – undo
19 19
 {
20 20
     /**
21 21
      * {@inheritdoc}
22
+     * @param string $path
22 23
      */
23 24
     public function get($path, $default = null)
24 25
     {
Please login to merge, or discard this patch.
src/Sylius/Bundle/ResourceBundle/Controller/RequestConfiguration.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
     }
155 155
 
156 156
     /**
157
-     * @param $name
157
+     * @param string $name
158 158
      *
159 159
      * @return string
160 160
      */
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
     /**
169 169
      * @param string $name
170 170
      *
171
-     * @return mixed|string|null
171
+     * @return string
172 172
      */
173 173
     public function getRedirectRoute($name)
174 174
     {
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
     }
229 229
 
230 230
     /**
231
-     * @param object|null $resource
231
+     * @param \Sylius\Component\Resource\Model\ResourceInterface|null $resource
232 232
      *
233 233
      * @return array
234 234
      */
Please login to merge, or discard this patch.