Skip to content

Commit c62d922

Browse files
author
Stanislav Idolov
authored
🔃 [EngCom] Public Pull Requests - 2.3-develop
Accepted Public Pull Requests: - #15853: Fixed return type hinting in DocBlocks for Wishlist module (by @rogyar) - #15695: Fixed a couple of typos (by @dverkade) - #15833: [Forwardport] Format the javascript code #10 (by @chirag-wagento) - #15755: [Forwardport] Error 500 in Module Manager (by @vijay-wagento) - #15794: [Forwardport] [Resolved : Styling <select> by changing less variables in Luma theme� (by @hitesh-wagento) - #15809: [Forwardport] fix: support multiple minisearch widget instances (by @DanielRuf) - #15558: Fixes in catalog component blocks [2.3-develop] (by @mhauri) - #15572: [Forwardport] Docblock typo fixes (by @rogyar) - #15748: [Forwardport] Prevent multiple add-to-cart initializations in case of ajax loaded product listing (by @vijay-wagento) - #15745: [Forwardport] Fix method name (typo) (by @vijay-wagento) - #15746: [Forwardport] Resolved : UI Component listing action column outside of screen when... (by @vgelani) - #15692: Fix minor issues in ui export converter classes (by @dmytro-ch) - #15649: [Forwardport] Fixes in config module (by @mhauri) - #15540: fix for Wrong price amount on product page #11717 (by @HirokazuNishi) Fixed GitHub Issues: - #15192: Module Manager module grid is not working Magento 2.2.4 (reported by @jignesh-baldha) has been fixed in #15755 by @vijay-wagento in 2.3-develop branch Related commits: 1. 486f7a7 2. 1b5d1d1 - #15608: Styling <select> by changing less variables in Luma theme doesn't work as expected (reported by @denistrator) has been fixed in #15794 by @hitesh-wagento in 2.3-develop branch Related commits: 1. 9fa6425 - #14153: UI Component listing action column outside of screen when too many columns (reported by @milansimek) has been fixed in #15746 by @vgelani in 2.3-develop branch Related commits: 1. 365bfb4 - #11717: Wrong price amount on product page (reported by @HirokazuNishi) has been fixed in #15540 by @HirokazuNishi in 2.3-develop branch Related commits: 1. cf05a84 2. 67a2038
2 parents 5565a24 + 8f9f374 commit c62d922

File tree

38 files changed

+107
-60
lines changed

38 files changed

+107
-60
lines changed

app/code/Magento/Catalog/Block/Adminhtml/Category/Tree.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ public function getBreadcrumbsJavascript($path, $javascriptVarName)
325325
*
326326
* @param Node|array $node
327327
* @param int $level
328-
* @return string
328+
* @return array
329329
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
330330
* @SuppressWarnings(PHPMD.NPathComplexity)
331331
*/

app/code/Magento/Catalog/Block/Adminhtml/Category/Widget/Chooser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ function (node, e) {
144144
*
145145
* @param \Magento\Framework\Data\Tree\Node|array $node
146146
* @param int $level
147-
* @return string
147+
* @return array
148148
*/
149149
protected function _getNodeJson($node, $level = 0)
150150
{

app/code/Magento/Catalog/Block/Adminhtml/Form/Renderer/Fieldset/Element.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Element extends \Magento\Backend\Block\Widget\Form\Renderer\Fieldset\Eleme
2121
/**
2222
* Retrieve data object related with form
2323
*
24-
* @return \Magento\Catalog\Model\Product || \Magento\Catalog\Model\Category
24+
* @return \Magento\Catalog\Model\Product|\Magento\Catalog\Model\Category
2525
*/
2626
public function getDataObject()
2727
{

app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Grid.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,7 @@ protected function _prepareColumns()
101101
'type' => 'options',
102102
'options' => ['1' => __('Yes'), '0' => __('No')],
103103
'align' => 'center'
104-
],
105-
'is_user_defined'
104+
]
106105
);
107106

108107
$this->_eventManager->dispatch('product_attribute_grid_build', ['grid' => $this]);

app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes/Search.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public function getSelectorOptions()
8181
*
8282
* @param string $labelPart
8383
* @param int $templateId
84-
* @return \Magento\Catalog\Model\ResourceModel\Product\Attribute\Collection
84+
* @return array
8585
*/
8686
public function getSuggestedAttributes($labelPart, $templateId = null)
8787
{

app/code/Magento/Catalog/Block/Adminhtml/Rss/Grid/Link.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function isRssAllowed()
6969
}
7070

7171
/**
72-
* @return string
72+
* @return array
7373
*/
7474
protected function getLinkParams()
7575
{

app/code/Magento/Catalog/Block/Category/Rss/Link.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public function getLabel()
6262
}
6363

6464
/**
65-
* @return string
65+
* @return array
6666
*/
6767
protected function getLinkParams()
6868
{

app/code/Magento/Catalog/Block/Product/AbstractProduct.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ public function getAddToCompareUrl()
195195
* Gets minimal sales quantity
196196
*
197197
* @param \Magento\Catalog\Model\Product $product
198-
* @return int|null
198+
* @return float|null
199199
*/
200200
public function getMinimalQty($product)
201201
{

app/code/Magento/Catalog/Block/Product/View/Options/AbstractOptions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ public function getPrice($price, $includingTax = null)
178178
* Returns price converted to current currency rate
179179
*
180180
* @param float $price
181-
* @return float
181+
* @return float|string
182182
*/
183183
public function getCurrencyPrice($price)
184184
{

app/code/Magento/Catalog/Block/Rss/Product/Special.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ protected function _construct()
107107
}
108108

109109
/**
110-
* @return string
110+
* @return array
111111
*/
112112
public function getRssData()
113113
{

0 commit comments

Comments
 (0)