Skip to content

Commit 0ddb1ea

Browse files
committed
Merge remote-tracking branch 'mainline/develop' into MAGETWO-66727
2 parents 06208c2 + 45dce69 commit 0ddb1ea

File tree

153 files changed

+1042
-151
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

153 files changed

+1042
-151
lines changed

app/code/Magento/Catalog/Model/Category.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ class Category extends \Magento\Catalog\Model\AbstractModel implements
116116
* URL rewrite model
117117
*
118118
* @var \Magento\UrlRewrite\Model\UrlRewrite
119+
* @deprecated since 2.2.0
119120
*/
120121
protected $_urlRewrite;
121122

app/code/Magento/CatalogUrlRewrite/Model/Map/DatabaseMapInterface.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
*/
66
namespace Magento\CatalogUrlRewrite\Model\Map;
77

8-
use Magento\Framework\DB\Select;
9-
108
/**
119
* Interface for a mysql data type of a map
1210
*

app/code/Magento/Checkout/Block/Checkout/LayoutProcessorInterface.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@
55
*/
66
namespace Magento\Checkout\Block\Checkout;
77

8+
/**
9+
* Layout processor interface.
10+
*
11+
* Can be used to provide a custom logic for checkout JS layout preparation.
12+
*
13+
* @see \Magento\Checkout\Block\Onepage
14+
*
15+
* @api
16+
*/
817
interface LayoutProcessorInterface
918
{
1019
/**

app/code/Magento/Checkout/CustomerData/AbstractItem.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
/**
1212
* Abstract item
13+
*
14+
* @api
1315
*/
1416
abstract class AbstractItem implements ItemInterface
1517
{

app/code/Magento/Checkout/CustomerData/ItemInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
/**
1212
* Item interface
13+
*
14+
* @api
1315
*/
1416
interface ItemInterface
1517
{

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
/**
99
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
10+
* @api
1011
*/
1112
class ImageProvider
1213
{

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
/**
1010
* Class RequestInfoFilterComposite
11+
* @api
1112
*/
1213
class RequestInfoFilterComposite implements RequestInfoFilterInterface
1314
{

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
/**
1010
* Interface RequestInfoFilterInterface used by composite and leafs to implement filtering
11+
* @api
1112
*/
1213
interface RequestInfoFilterInterface
1314
{

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@
55
*/
66
namespace Magento\Checkout\Model;
77

8+
/**
9+
* Composite checkout configuration provider.
10+
*
11+
* @see \Magento\Checkout\Model\ConfigProviderInterface
12+
* @api
13+
*/
814
class CompositeConfigProvider implements ConfigProviderInterface
915
{
1016
/**

app/code/Magento/Checkout/Model/Layout/AbstractTotalsProcessor.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@
77

88
use Magento\Framework\App\Config\ScopeConfigInterface;
99

10+
/**
11+
* Abstract totals processor.
12+
*
13+
* Can be used to process totals information that will be rendered during checkout.
14+
* Abstract class provides sorting routing to sort total information based on configuration settings.
15+
*
16+
* @api
17+
*/
1018
abstract class AbstractTotalsProcessor
1119
{
1220
/**

0 commit comments

Comments
 (0)