Skip to content

Commit 7e99f9f

Browse files
author
olysenko
committed
Merge remote-tracking branch 'mainline/develop' into MAGETWO-67477
2 parents 069f486 + 6e95f7f commit 7e99f9f

Some content is hidden

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

44 files changed

+144
-3
lines changed

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
/**

app/code/Magento/Checkout/Model/Session/SuccessValidator.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
namespace Magento\Checkout\Model\Session;
77

88
/**
9-
* Test is checkout session valid for success action
9+
* Test if checkout session valid for success action
10+
*
11+
* @api
1012
*/
1113
class SuccessValidator
1214
{

app/code/Magento/Checkout/view/frontend/web/js/action/create-billing-address.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
* See COPYING.txt for license details.
44
*/
55

6+
/**
7+
* @api
8+
*/
69
define([
710
'Magento_Checkout/js/model/address-converter'
811
], function (addressConverter) {

0 commit comments

Comments
 (0)