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

Commit 3495086

Browse files
Merge forwardport of magento/magento2#11070 to 2.3-develop branch
Applied pull request patch https://github.com/magento/magento2/pull/11070.patch (created by @schmengler) based on commit(s): 1. e5479b4 Fixed GitHub Issues in 2.3-develop branch: - magento/magento2#10133: Please add your expectations for @deprecated annotations (reported by @flancer64)
2 parents 55debe0 + 0ab4533 commit 3495086

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

app/code/Magento/Checkout/Model/Cart.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@
1313

1414
/**
1515
* Shopping cart model
16+
*
1617
* @api
1718
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
18-
* @deprecated 100.1.0
19+
* @deprecated 100.1.0 Use \Magento\Quote\Model\Quote instead
20+
* @see \Magento\Quote\Api\Data\CartInterface
1921
*/
2022
class Cart extends DataObject implements CartInterface
2123
{

app/code/Magento/Checkout/Model/Cart/CartInterface.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
*
1313
* @api
1414
* @author Magento Core Team <[email protected]>
15-
* @deprecated 100.1.0
15+
* @deprecated 100.1.0 Use \Magento\Quote\Api\Data\CartInterface instead
16+
* @see \Magento\Quote\Api\Data\CartInterface
1617
*/
1718
interface CartInterface
1819
{

0 commit comments

Comments
 (0)