Skip to content

Commit 45293b0

Browse files
committed
MAGETWO-53667: @api interfaces in 2.1
1 parent e7ab10a commit 45293b0

File tree

84 files changed

+208
-4
lines changed

Some content is hidden

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

84 files changed

+208
-4
lines changed

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

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

88
use Magento\Framework\Controller\ResultFactory;
99

10+
/**
11+
* @api
12+
*/
1013
class Context implements \Magento\Framework\ObjectManager\ContextInterface
1114
{
1215
/**

lib/internal/Magento/Framework/App/ActionFactory.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
*/
88
namespace Magento\Framework\App;
99

10+
/**
11+
* @api
12+
*/
1013
class ActionFactory
1114
{
1215
/**

lib/internal/Magento/Framework/App/ActionInterface.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
*/
88
namespace Magento\Framework\App;
99

10+
/**
11+
* @api
12+
*/
1013
interface ActionInterface
1114
{
1215
const FLAG_NO_DISPATCH = 'no-dispatch';

lib/internal/Magento/Framework/App/Area/FrontNameResolverFactory.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
*/
88
namespace Magento\Framework\App\Area;
99

10+
/**
11+
* @api
12+
*/
1013
class FrontNameResolverFactory
1114
{
1215
/**

lib/internal/Magento/Framework/App/Area/FrontNameResolverInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ interface FrontNameResolverInterface
1616
/**
1717
* Retrieve front name
1818
*
19-
* @param bool if true, only return frontname if it is valid for the host
19+
* @param bool $checkHost if true, return front name only if it is valid for the current host
2020
* @return string|bool
2121
*/
2222
public function getFrontName($checkHost = false);

lib/internal/Magento/Framework/App/Language/Dictionary.php

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

1212
/**
1313
* A service for reading language package dictionaries
14+
*
15+
* @api
1416
*/
1517
class Dictionary
1618
{

lib/internal/Magento/Framework/App/Request/DataPersistorInterface.php

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

8+
/**
9+
* @api
10+
*/
811
interface DataPersistorInterface
912
{
1013
/**

lib/internal/Magento/Framework/App/Request/PathInfoProcessorInterface.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
*/
88
namespace Magento\Framework\App\Request;
99

10+
/**
11+
* @api
12+
*/
1013
interface PathInfoProcessorInterface
1114
{
1215
/**

lib/internal/Magento/Framework/App/RequestInterface.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
*/
88
namespace Magento\Framework\App;
99

10+
/**
11+
* @api
12+
*/
1013
interface RequestInterface
1114
{
1215
/**

lib/internal/Magento/Framework/App/ResponseInterface.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
*/
88
namespace Magento\Framework\App;
99

10+
/**
11+
* @api
12+
*/
1013
interface ResponseInterface
1114
{
1215
/**

0 commit comments

Comments
 (0)