Skip to content

Commit 20dfc93

Browse files
author
Gabriel Galvao da Gama
committed
Merge remote-tracking branch 'magento-engcom/imported-magento-magento2-32728' into api-changes-delivery
2 parents 998c146 + 54292d2 commit 20dfc93

14 files changed

+41
-0
lines changed

lib/internal/Magento/Framework/Encryption/Adapter/EncryptionAdapterInterface.php

+5
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@
88

99
namespace Magento\Framework\Encryption\Adapter;
1010

11+
/**
12+
* Encryption adapter interface
13+
*
14+
* @api
15+
*/
1116
interface EncryptionAdapterInterface
1217
{
1318
/**

lib/internal/Magento/Framework/Event/ConfigInterface.php

+3
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,14 @@
55
* Copyright © Magento, Inc. All rights reserved.
66
* See COPYING.txt for license details.
77
*/
8+
declare(strict_types=1);
9+
810
namespace Magento\Framework\Event;
911

1012
/**
1113
* Interface \Magento\Framework\Event\ConfigInterface
1214
*
15+
* @api
1316
*/
1417
interface ConfigInterface
1518
{

lib/internal/Magento/Framework/Event/InvokerInterface.php

+3
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,14 @@
55
* Copyright © Magento, Inc. All rights reserved.
66
* See COPYING.txt for license details.
77
*/
8+
declare(strict_types=1);
9+
810
namespace Magento\Framework\Event;
911

1012
/**
1113
* Interface \Magento\Framework\Event\InvokerInterface
1214
*
15+
* @api
1316
*/
1417
interface InvokerInterface
1518
{

lib/internal/Magento/Framework/Event/ManagerInterface.php

+3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,14 @@
33
* Copyright © Magento, Inc. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6+
declare(strict_types=1);
7+
68
namespace Magento\Framework\Event;
79

810
/**
911
* Interface \Magento\Framework\Event\ManagerInterface
1012
*
13+
* @api
1114
*/
1215
interface ManagerInterface
1316
{

lib/internal/Magento/Framework/Exception/TemporaryStateExceptionInterface.php

+4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@
33
* Copyright © Magento, Inc. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6+
declare(strict_types=1);
7+
68
namespace Magento\Framework\Exception;
79

810
/**
911
* Temporary state exception that represent recoverable error
12+
*
13+
* @api
1014
*/
1115
interface TemporaryStateExceptionInterface
1216
{

lib/internal/Magento/Framework/Filesystem/Directory/PathValidatorInterface.php

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212

1313
/**
1414
* Validate paths to be used with directories.
15+
*
16+
* @api
1517
*/
1618
interface PathValidatorInterface
1719
{

lib/internal/Magento/Framework/Filesystem/DriverPoolInterface.php

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99

1010
/**
1111
* A pool of stream wrappers.
12+
*
13+
* @api
1214
*/
1315
interface DriverPoolInterface
1416
{

lib/internal/Magento/Framework/Filesystem/File/ReadInterface.php

+3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,14 @@
33
* Copyright © Magento, Inc. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6+
declare(strict_types=1);
7+
68
namespace Magento\Framework\Filesystem\File;
79

810
/**
911
* Interface \Magento\Framework\Filesystem\File\ReadInterface
1012
*
13+
* @api
1114
*/
1215
interface ReadInterface
1316
{

lib/internal/Magento/Framework/Filter/DirectiveProcessor/FilterInterface.php

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
/**
1212
* Transforms the output of a directive processor
13+
*
14+
* @api
1315
*/
1416
interface FilterInterface
1517
{

lib/internal/Magento/Framework/Filter/DirectiveProcessorInterface.php

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
/**
1212
* Responsible for converting a directive data structure to relevant template output
13+
*
14+
* @api
1315
*/
1416
interface DirectiveProcessorInterface
1517
{

lib/internal/Magento/Framework/Filter/FactoryInterface.php

+4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@
33
* Copyright © Magento, Inc. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6+
declare(strict_types=1);
7+
68
namespace Magento\Framework\Filter;
79

810
/**
911
* Magento filter factory interface
12+
*
13+
* @api
1014
*/
1115
interface FactoryInterface
1216
{

lib/internal/Magento/Framework/Filter/FilterManager/ConfigInterface.php

+4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@
33
* Copyright © Magento, Inc. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6+
declare(strict_types=1);
7+
68
namespace Magento\Framework\Filter\FilterManager;
79

810
/**
911
* Filter manager config interface
12+
*
13+
* @api
1014
*/
1115
interface ConfigInterface
1216
{

lib/internal/Magento/Framework/Filter/SimpleDirective/ProcessorInterface.php

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212

1313
/**
1414
* An easier mechanism to implement custom directives rather than parsing the whole directive manually
15+
*
16+
* @api
1517
*/
1618
interface ProcessorInterface
1719
{

lib/internal/Magento/Framework/Filter/VariableResolverInterface.php

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
/**
1212
* Responsible for obtaining the value of variables defined in the template
13+
*
14+
* @api
1315
*/
1416
interface VariableResolverInterface
1517
{

0 commit comments

Comments
 (0)