Skip to content

Commit e19766a

Browse files
author
Gabriel Galvao da Gama
committed
Merge remote-tracking branch 'magento-engcom/imported-magento-magento2-32152' into api-changes-delivery
2 parents e679c2b + 6815764 commit e19766a

29 files changed

+55
-7
lines changed

app/code/Magento/Search/Model/SearchEngine/ValidatorInterface.php

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

1010
/**
1111
* Validate search engine configuration
12+
*
13+
* @api
1214
*/
1315
interface ValidatorInterface
1416
{

app/code/Magento/Search/Setup/InstallConfigInterface.php

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

1010
/**
1111
* Configure search engine from installation input
12+
*
13+
* @api
1214
*/
1315
interface InstallConfigInterface
1416
{

app/code/Magento/Security/Api/Data/UserExpirationInterface.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
* Copyright © Magento, Inc. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6-
76
declare(strict_types=1);
87

98
namespace Magento\Security\Api\Data;
@@ -12,6 +11,8 @@
1211

1312
/**
1413
* Interface UserExpirationInterface to be used as a DTO for expires_at property on User model.
14+
*
15+
* @api
1516
*/
1617
interface UserExpirationInterface extends \Magento\Framework\Api\ExtensibleDataInterface
1718
{

app/code/Magento/Shipping/Model/Carrier/Source/GenericInterface.php

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

1010
/**
1111
* Interface GenericInterface
12+
*
13+
* @api
1214
*/
1315
interface GenericInterface extends OptionSourceInterface
1416
{

app/code/Magento/Store/Model/Config/Importer/Processor/ProcessorInterface.php

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

1010
/**
1111
* The processor for store manipulations.
12+
*
13+
* @api
1214
*/
1315
interface ProcessorInterface
1416
{

app/code/Magento/Store/Model/StoreResolver/ReaderInterface.php

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

app/code/Magento/Store/Model/StoreSwitcher/ContextInterface.php

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

1212
/**
1313
* Store switcher context interface
14+
*
15+
* @api
1416
*/
1517
interface ContextInterface
1618
{

app/code/Magento/Store/Model/StoreSwitcher/RedirectDataInterface.php

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

1010
/**
1111
* Store switcher redirect data interface
12+
*
13+
* @api
1214
*/
1315
interface RedirectDataInterface
1416
{

app/code/Magento/Store/Model/StoreSwitcher/RedirectDataPostprocessorInterface.php

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

1010
/**
1111
* Store switcher redirect data post-processor interface
12+
*
13+
* @api
1214
*/
1315
interface RedirectDataPostprocessorInterface
1416
{

app/code/Magento/Store/Model/StoreSwitcher/RedirectDataPreprocessorInterface.php

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

1010
/**
1111
* Store switcher redirect data pre-processor interface
12+
*
13+
* @api
1214
*/
1315
interface RedirectDataPreprocessorInterface
1416
{

app/code/Magento/Store/Model/StoreSwitcher/RedirectDataSerializerInterface.php

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

1010
/**
1111
* Store switcher redirect data serializer interface
12+
*
13+
* @api
1214
*/
1315
interface RedirectDataSerializerInterface
1416
{

app/code/Magento/Store/Model/StoreSwitcherInterface.php

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

1313
/**
1414
* Handles store switching procedure and detects url for final redirect after store switching.
15+
*
16+
* @api
1517
*/
1618
interface StoreSwitcherInterface
1719
{

app/code/Magento/Tax/Api/TaxAddressManagerInterface.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@
33
* Copyright © Magento, Inc. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6-
76
namespace Magento\Tax\Api;
87

98
use Magento\Customer\Model\Address;
109

1110
/**
1211
* Interface to save data in customer session.
12+
*
13+
* @api
1314
*/
1415
interface TaxAddressManagerInterface
1516
{

app/code/Magento/Tax/Model/System/Message/NotificationInterface.php

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

88
/**
99
* Notification interface for tax-related configuration issues.
10+
*
11+
* @api
1012
*/
1113
interface NotificationInterface extends \Magento\Framework\Notification\MessageInterface
1214
{

app/code/Magento/Tax/Model/TaxClass/Type/TypeInterface.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,12 @@
33
* Copyright © Magento, Inc. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6-
7-
/**
8-
* Interface for tax classes
9-
*/
106
namespace Magento\Tax\Model\TaxClass\Type;
117

128
/**
139
* Interface \Magento\Tax\Model\TaxClass\Type\TypeInterface
1410
*
11+
* @api
1512
*/
1613
interface TypeInterface
1714
{

app/code/Magento/Theme/Model/Design/Config/MetadataProviderInterface.php

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

app/code/Magento/Theme/Model/Theme/StoreThemesResolverInterface.php

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

1212
/**
1313
* Store associated themes resolver.
14+
*
15+
* @api
1416
*/
1517
interface StoreThemesResolverInterface
1618
{

app/code/Magento/Ui/Component/Form/Element/DataType/DataTypeInterface.php

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

1010
/**
1111
* Interface DataTypeInterface
12+
*
13+
* @api
1214
*/
1315
interface DataTypeInterface extends UiComponentInterface
1416
{

app/code/Magento/Ui/Component/Layout/Tabs/TabInterface.php

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

88
/**
99
* Interface TabInterface
10+
*
11+
* @api
1012
*/
1113
interface TabInterface
1214
{

app/code/Magento/Ui/Component/Wysiwyg/ConfigInterface.php

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

88
/**
99
* Interface ConfigInterface
10+
*
11+
* @api
1012
*/
1113
interface ConfigInterface
1214
{

app/code/Magento/Ui/Config/Argument/ParserInterface.php

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

88
/**
99
* Convert node to array
10+
*
11+
* @api
1012
*/
1113
interface ParserInterface
1214
{

app/code/Magento/Ui/Config/ConverterInterface.php

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

88
/**
99
* Converter interface is used to convert UI Component XML configuration into UI Component interfaces arguments
10+
*
11+
* @api
1012
*/
1113
interface ConverterInterface
1214
{

app/code/Magento/Ui/Controller/UiActionInterface.php

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

88
/**
99
* Interface UiActionInterface
10+
*
11+
* @api
1012
*/
1113
interface UiActionInterface
1214
{

app/code/Magento/Ui/DataProvider/AddFieldToCollectionInterface.php

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

1010
/**
1111
* AddFieldToCollection interface
12+
*
13+
* @api
1214
*/
1315
interface AddFieldToCollectionInterface
1416
{

app/code/Magento/Ui/DataProvider/AddFilterToCollectionInterface.php

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

1010
/**
1111
* AddFilterToCollection interface
12+
*
13+
* @api
1214
*/
1315
interface AddFilterToCollectionInterface
1416
{

app/code/Magento/Ui/DataProvider/Mapper/MapperInterface.php

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

88
/**
99
* Interface MapperInterface
10+
*
11+
* @api
1012
*/
1113
interface MapperInterface
1214
{

app/code/Magento/Ui/DataProvider/Modifier/PoolInterface.php

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

app/code/Magento/Ui/Model/ColorPicker/ModeInterface.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
/**
1212
* Mode interface for color modes
13+
*
14+
* @api
1315
*/
1416
interface ModeInterface
1517
{
@@ -18,5 +20,5 @@ interface ModeInterface
1820
*
1921
* @return array
2022
*/
21-
public function getConfig() : array ;
23+
public function getConfig(): array ;
2224
}

app/code/Magento/Ui/Model/UrlInput/ConfigInterface.php

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

1010
/**
1111
* Config interface for url link types
12+
*
13+
* @api
1214
*/
1315
interface ConfigInterface
1416
{

0 commit comments

Comments
 (0)