Skip to content

Commit d6b87e2

Browse files
author
Gabriel Galvao da Gama
committed
Merge remote-tracking branch 'magento-engcom/imported-magento-magento2-32732' into api-changes-delivery
2 parents 55819d2 + 8d9403b commit d6b87e2

File tree

16 files changed

+53
-0
lines changed

16 files changed

+53
-0
lines changed

lib/internal/Magento/Framework/Profiler/Driver/Standard/OutputInterface.php

Lines changed: 3 additions & 0 deletions
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\Profiler\Driver\Standard;
911

1012
/**
1113
* Interface \Magento\Framework\Profiler\Driver\Standard\OutputInterface
1214
*
15+
* @api
1316
*/
1417
interface OutputInterface
1518
{

lib/internal/Magento/Framework/Profiler/Driver/Standard/Stat.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,15 @@
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\Profiler\Driver\Standard;
911

1012
use Magento\Framework\Profiler;
1113

14+
/**
15+
* @api
16+
*/
1217
class Stat
1318
{
1419
/**

lib/internal/Magento/Framework/Search/Adapter/Aggregation/AggregationResolverInterface.php

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

810
use Magento\Framework\Search\RequestInterface;
911

1012
/**
1113
* Interface \Magento\Framework\Search\Adapter\Aggregation\AggregationResolverInterface
1214
*
15+
* @api
1316
*/
1417
interface AggregationResolverInterface
1518
{

lib/internal/Magento/Framework/Search/Adapter/OptionsInterface.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\Framework\Search\Adapter;
79

810
/**
911
* Interface \Magento\Framework\Search\Adapter\OptionsInterface
1012
*
13+
* @api
1114
*/
1215
interface OptionsInterface
1316
{

lib/internal/Magento/Framework/Search/Adapter/Preprocessor/PreprocessorInterface.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\Framework\Search\Adapter\Preprocessor;
79

810
/**
911
* Interface \Magento\Framework\Search\Adapter\Preprocessor\PreprocessorInterface
1012
*
13+
* @api
1114
*/
1215
interface PreprocessorInterface
1316
{

lib/internal/Magento/Framework/Search/AdapterInterface.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\Search;
79

810
use Magento\Framework\Search\Response\QueryResponse;
911

1012
/**
1113
* Search Adapter interface
14+
*
15+
* @api
1216
*/
1317
interface AdapterInterface
1418
{

lib/internal/Magento/Framework/Search/Dynamic/Algorithm/AlgorithmInterface.php

Lines changed: 3 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\Framework\Search\Dynamic\Algorithm;
79

810
use Magento\Framework\DB\Ddl\Table;
@@ -12,6 +14,7 @@
1214
/**
1315
* Interface \Magento\Framework\Search\Dynamic\Algorithm\AlgorithmInterface
1416
*
17+
* @api
1518
*/
1619
interface AlgorithmInterface
1720
{

lib/internal/Magento/Framework/Search/Request/Aggregation/StatusInterface.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@
44
* Copyright © Magento, Inc. All rights reserved.
55
* See COPYING.txt for license details.
66
*/
7+
declare(strict_types=1);
8+
79
namespace Magento\Framework\Search\Request\Aggregation;
810

911
/**
1012
* Interface \Magento\Framework\Search\Request\Aggregation\StatusInterface
1113
*
14+
* @api
1215
*/
1316
interface StatusInterface
1417
{

lib/internal/Magento/Framework/Search/Request/IndexScopeResolverInterface.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\Search\Request;
79

810
/**
911
* Resolve table name by provided dimensions. Scope Resolver must accept all dimensions that potentially can be used to
1012
* resolve table name, but certain implementation can filter them if needed
13+
*
14+
* @api
1115
*/
1216
interface IndexScopeResolverInterface
1317
{

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

Lines changed: 4 additions & 0 deletions
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\Search;
79

810
/**
911
* Search Request
12+
*
13+
* @api
1014
*/
1115
interface ResponseInterface extends \IteratorAggregate, \Countable
1216
{

0 commit comments

Comments
 (0)