Skip to content
This repository was archived by the owner on Apr 29, 2019. It is now read-only.

Commit d849f99

Browse files
🔃 [EngCom] Public Pull Requests - 2.3-develop
Accepted Public Pull Requests: - magento/magento2#15561: [Forwardport] Removed duplicate line and added comment on variable (by @vgelani) - magento/magento2#15547: [Forwardport 2.3] Fix typos in multishipping module (by @VitaliyBoyko) - magento/magento2#15391: [Forwardport] Add 'const' type support to layout arguments (by @IgorVitol)
2 parents 166dd61 + 2ef0752 commit d849f99

File tree

6 files changed

+18
-5
lines changed

6 files changed

+18
-5
lines changed

app/code/Magento/Multishipping/Block/Checkout/AbstractMultishipping.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66

77
/**
8-
* Mustishipping checkout base abstract block
8+
* Multishipping checkout base abstract block
99
*
1010
* @author Magento Core Team <[email protected]>
1111
*/

app/code/Magento/Multishipping/Block/Checkout/Shipping.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
use Magento\Quote\Model\Quote\Address;
1010

1111
/**
12-
* Mustishipping checkout shipping
12+
* Multishipping checkout shipping
1313
*
1414
* @api
1515
* @author Magento Core Team <[email protected]>

app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Discount.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
*/
1616
class Discount extends \Magento\Sales\Block\Adminhtml\Order\Create\Totals\DefaultTotals
1717
{
18-
//protected $_template = 'tax/checkout/subtotal.phtml';
19-
20-
//protected $_template = 'tax/checkout/subtotal.phtml';
18+
/**
19+
* @var \Magento\Tax\Model\Config
20+
*/
2121
protected $_taxConfig;
2222

2323
/**

app/code/Magento/Ui/etc/di.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,7 @@
252252
<type name="Magento\Framework\Data\Argument\Interpreter\Composite">
253253
<arguments>
254254
<argument name="interpreters" xsi:type="array">
255+
<item name="const" xsi:type="object">Magento\Framework\Data\Argument\Interpreter\Constant</item>
255256
<item name="object" xsi:type="object">configurableObjectArgumentInterpreterProxy</item>
256257
<item name="configurableObject" xsi:type="object">configurableObjectArgumentInterpreterProxy</item>
257258
<item name="array" xsi:type="object">arrayArgumentInterpreterProxy</item>

lib/internal/Magento/Framework/View/Layout/etc/layout_merged.xsd

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,10 @@
6262
</xs:extension>
6363
</xs:complexContent>
6464
</xs:complexType>
65+
66+
<xs:complexType name="const">
67+
<xs:complexContent>
68+
<xs:extension base="argumentType" />
69+
</xs:complexContent>
70+
</xs:complexType>
6571
</xs:schema>

lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,10 @@
3232
<xs:field xpath="@name"/>
3333
</xs:unique>
3434
</xs:element>
35+
36+
<xs:complexType name="const">
37+
<xs:complexContent>
38+
<xs:extension base="argumentType" />
39+
</xs:complexContent>
40+
</xs:complexType>
3541
</xs:schema>

0 commit comments

Comments
 (0)