Skip to content

Commit 083cd84

Browse files
author
Gabriel Galvao da Gama
committed
Merge branch '32129-api-changes' into api-changes-delivery
2 parents 4ad4556 + d085de8 commit 083cd84

File tree

22 files changed

+66
-0
lines changed

22 files changed

+66
-0
lines changed

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

Lines changed: 3 additions & 0 deletions
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\Customer\Controller;
79

810
/**
911
* Declarations of core registry keys used by the Customer module
1012
*
13+
* @api
1114
*/
1215
class RegistryConstants
1316
{

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,15 @@
33
* Copyright © Magento, Inc. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6+
declare(strict_types=1);
7+
68
namespace Magento\Customer\Model;
79

10+
/**
11+
* Class Context
12+
*
13+
* @api
14+
*/
815
class Context
916
{
1017
/**

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,13 @@
33
* Copyright © Magento, Inc. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6+
declare(strict_types=1);
7+
68
namespace Magento\Sales\Model\ResourceModel\Order\Collection;
79

810
/**
11+
* Class Factory
12+
*
913
* @api
1014
*/
1115
class Factory

app/code/Magento/Sales/Model/ResourceModel/Order/CollectionFactory.php

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

99
/**
1010
* Class CollectionFactory
11+
*
12+
* @api
1113
*/
1214
class CollectionFactory implements CollectionFactoryInterface
1315
{

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

Lines changed: 3 additions & 0 deletions
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\Shipping\Model\Carrier;
79

810
/**
911
* Interface \Magento\Shipping\Model\Carrier\CarrierInterface
1012
*
13+
* @api
1114
*/
1215
interface CarrierInterface
1316
{

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
* Copyright © Magento, Inc. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6+
declare(strict_types=1);
7+
68
namespace Magento\Ui\Component\Layout\Tabs;
79

810
/**

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

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

78
/**
89
* Widget Block Interface
910
*
1011
* @author Magento Core Team <core@magentocommerce.com>
12+
* @api
1113
*/
1214
namespace Magento\Widget\Block;
1315

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,15 @@
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\Api;
79

810
/**
911
* Base Class for simple data Objects
1012
* @SuppressWarnings(PHPMD.NumberOfChildren)
13+
*
14+
* @api
1115
*/
1216
abstract class AbstractSimpleObject
1317
{

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,16 @@
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\App\Filesystem;
79

810
use Magento\Framework\Code\Generator\Io;
911

1012
/**
1113
* A Magento application specific list of directories
14+
*
15+
* @api
1216
*/
1317
class DirectoryList extends \Magento\Framework\Filesystem\DirectoryList
1418
{

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,17 @@
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\App\Http;
79

810
use Magento\Framework\App\ObjectManager;
911
use Magento\Framework\Serialize\Serializer\Json;
1012

1113
/**
1214
* Context data for requests
15+
*
16+
* @api
1317
*/
1418
class Context
1519
{

0 commit comments

Comments
 (0)