Skip to content

Commit b91b8f2

Browse files
author
Stanislav Idolov
authored
🔃 [EngCom] Public Pull Requests - 2.1-develop
Accepted Public Pull Requests: - #16043: [Backport] fix for dropdown toggle icon in cart (by @chirag-wagento) - #16024: [Backport 2.1] Wishlist: Remove unnecessary parameter from invoking toHtml() method (by @rogyar) - #16031: [Backport] #13899 Solve Canada Zip Code pattern (by @hitesh-wagento) - #16026: Fixed a minor styling issue in page footer in order to align the columns indentations (by @dmytro-ch) - #15874: [Backport-2.1] Trim username on customer account login page (by @dankhrapiyush) - #15915: [Backport] Fixes in catalog component blocks [2.1-develop] (by @chirag-wagento) - #15643: [Backport] Fixed Purchased Order Form button should visible properly (by @vgelani) - #15917: [Backport] [Resolved : Changing @tab-content__border variable has no effect in B� (by @hitesh-wagento) - #15880: [Backport] [Resolved : limiter float too generic] (by @hitesh-wagento) Fixed GitHub Issues: - #13899: Postal code (zip code) for Canada should allow postal codes without space (reported by @sl02) has been fixed in #16031 by @hitesh-wagento in 2.1-develop branch Related commits: 1. bc26a3a 2. 8f03ac9 3. 2587e0f 4. e7db130 - #6058: IE11 user login email validation fails if field has leading or trailing space (reported by @dnadle) has been fixed in #15874 by @dankhrapiyush in 2.1-develop branch Related commits: 1. f8397eb 2. 43835fc 3. 14721c7 - #14999: Changing @tab-content__border variable has no effect in Blank theme (reported by @denistrator) has been fixed in #15917 by @hitesh-wagento in 2.1-develop branch Related commits: 1. 5b34517 - #15323: limiter float too generic (reported by @DanielRuf) has been fixed in #15880 by @hitesh-wagento in 2.1-develop branch Related commits: 1. 950a668
2 parents 4d1b832 + ea93dfb commit b91b8f2

File tree

23 files changed

+172
-23
lines changed

23 files changed

+172
-23
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
@@ -60,7 +60,7 @@ public function getLabel()
6060
}
6161

6262
/**
63-
* @return string
63+
* @return array
6464
*/
6565
protected function getLinkParams()
6666
{

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ public function getAddToCompareUrl()
186186
* Gets minimal sales quantity
187187
*
188188
* @param \Magento\Catalog\Model\Product $product
189-
* @return int|null
189+
* @return float|null
190190
*/
191191
public function getMinimalQty($product)
192192
{

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

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

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)