Skip to content

Commit 69357c2

Browse files
author
cspruiell
committed
Merge remote-tracking branch 'origin/MAGETWO-65444-Api-Annotations-Part2' into MAGETWO-65444-Api-Annotations
2 parents 38d94ad + ce9e799 commit 69357c2

File tree

103 files changed

+275
-81
lines changed

Some content is hidden

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

103 files changed

+275
-81
lines changed

app/code/Magento/Catalog/Model/Product/Exception.php

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

88
use Magento\Framework\Exception\LocalizedException;
99

10+
/**
11+
* @api
12+
*/
1013
class Exception extends LocalizedException
1114
{
1215
}

app/code/Magento/CatalogRule/Model/Flag.php

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,11 @@
44
* See COPYING.txt for license details.
55
*/
66

7-
/**
8-
* Flag stores status about availability not applied catalog price rules
9-
*
10-
* @author Magento Core Team <core@magentocommerce.com>
11-
*/
127
namespace Magento\CatalogRule\Model;
138

9+
/**
10+
* Flag indicates that some rules have changed but changes have not been applied yet.
11+
*/
1412
class Flag extends \Magento\Framework\Flag
1513
{
1614
/**

app/code/Magento/CatalogRule/Model/Indexer/IndexBuilder.php

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

1717
/**
1818
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
19+
* @api
1920
*/
2021
class IndexBuilder
2122
{

app/code/Magento/CatalogSearch/Model/Indexer/Scope/IndexTableNotExistException.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
/**
1212
* Exception which represents situation where temporary index table should be used somewhere,
1313
* but it does not exist in a database
14+
*
15+
* @api
1416
*/
1517
class IndexTableNotExistException extends LocalizedException
1618
{

app/code/Magento/CatalogSearch/Model/Indexer/Scope/UnknownStateException.php

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

1111
/**
1212
* Exception for situation where used state which is not defined in configuration
13+
*
14+
* @api
1315
*/
1416
class UnknownStateException extends LocalizedException
1517
{

app/code/Magento/Checkout/Exception.php

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

8+
/**
9+
* @api
10+
*/
811
class Exception extends \Magento\Framework\Exception\LocalizedException
912
{
1013
}

app/code/Magento/Eav/Model/Entity/Attribute/AttributeGroupAlreadyExistsException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use Magento\Framework\Exception\AlreadyExistsException;
99

1010
/**
11-
* Class AttributeGroupAlreadyExistsException
11+
* @api
1212
*/
1313
class AttributeGroupAlreadyExistsException extends AlreadyExistsException
1414
{

app/code/Magento/Eav/Model/Entity/Attribute/Exception.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/**
99
* EAV entity attribute exception
1010
*
11-
* @author Magento Core Team <core@magentocommerce.com>
11+
* @api
1212
*/
1313
class Exception extends \Magento\Framework\Exception\LocalizedException
1414
{

app/code/Magento/Msrp/Pricing/Price/MsrpPriceInterface.php

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

1111
/**
1212
* MSRP price interface
13+
*
14+
* @api
1315
*/
1416
interface MsrpPriceInterface
1517
{

app/code/Magento/Msrp/view/frontend/web/js/view/checkout/minicart/subtotal/totals.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
* Copyright © Magento, Inc. All rights reserved.
33
* See COPYING.txt for license details.
44
*/
5+
6+
/**
7+
* @api
8+
*/
9+
510
define([
611
'Magento_Tax/js/view/checkout/minicart/subtotal/totals',
712
'underscore'

0 commit comments

Comments
 (0)