Skip to content

Commit c1bc7a9

Browse files
ProkopovVitaliyGabriel Galvao da Gama
authored andcommitted
Marked classes and interfaces as API
1 parent 2e1b1b0 commit c1bc7a9

File tree

17 files changed

+34
-1
lines changed

17 files changed

+34
-1
lines changed

app/code/Magento/Customer/Controller/RegistryConstants.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
/**
99
* Declarations of core registry keys used by the Customer module
1010
*
11+
* @api
1112
*/
1213
class RegistryConstants
1314
{

app/code/Magento/Customer/Model/Context.php

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

8+
/**
9+
* Class Context
10+
*
11+
* @api
12+
*/
813
class Context
914
{
1015
/**

app/code/Magento/Sales/Model/ResourceModel/Order/Collection/Factory.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
namespace Magento\Sales\Model\ResourceModel\Order\Collection;
77

88
/**
9+
* Class Factory
10+
*
911
* @api
1012
*/
1113
class Factory

app/code/Magento/Shipping/Model/Carrier/CarrierInterface.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
/**
99
* Interface \Magento\Shipping\Model\Carrier\CarrierInterface
1010
*
11+
* @api
1112
*/
1213
interface CarrierInterface
1314
{

app/code/Magento/Widget/Block/BlockInterface.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
* Widget Block Interface
99
*
1010
* @author Magento Core Team <core@magentocommerce.com>
11+
* @api
1112
*/
1213
namespace Magento\Widget\Block;
1314

lib/internal/Magento/Framework/Api/AbstractSimpleObject.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
/**
99
* Base Class for simple data Objects
1010
* @SuppressWarnings(PHPMD.NumberOfChildren)
11+
*
12+
* @api
1113
*/
1214
abstract class AbstractSimpleObject
1315
{

lib/internal/Magento/Framework/App/Action/HttpGetActionInterface.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,14 @@
88

99
namespace Magento\Framework\App\Action;
1010

11+
use Magento\Framework\App\ActionInterface;
12+
1113
/**
1214
* Marker for actions processing GET requests.
1315
*
1416
* @api
1517
*/
16-
interface HttpGetActionInterface extends HttpHeadActionInterface
18+
interface HttpGetActionInterface extends ActionInterface
1719
{
1820

1921
}

lib/internal/Magento/Framework/App/Filesystem/DirectoryList.php

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

1010
/**
1111
* A Magento application specific list of directories
12+
*
13+
* @api
1214
*/
1315
class DirectoryList extends \Magento\Framework\Filesystem\DirectoryList
1416
{

lib/internal/Magento/Framework/App/Http/Context.php

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

1111
/**
1212
* Context data for requests
13+
*
14+
* @api
1315
*/
1416
class Context
1517
{

lib/internal/Magento/Framework/App/Response/Http/FileFactory.php

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

1212
/**
1313
* Class FileFactory serves to declare file content in response for download.
14+
*
15+
* @api
1416
*/
1517
class FileFactory
1618
{

0 commit comments

Comments
 (0)