Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[32032] Marked framework interfaces as API part 6 #32172

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);

namespace Magento\Framework\Profiler\Driver\Standard;

/**
* Interface \Magento\Framework\Profiler\Driver\Standard\OutputInterface
*
* @api
*/
interface OutputInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,15 @@
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);

namespace Magento\Framework\Profiler\Driver\Standard;

use Magento\Framework\Profiler;

/**
* @api
*/
class Stat
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,16 @@
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);

namespace Magento\Framework\Search\Adapter\Aggregation;

use Magento\Framework\Search\RequestInterface;

/**
* Interface \Magento\Framework\Search\Adapter\Aggregation\AggregationResolverInterface
*
* @api
*/
interface AggregationResolverInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,14 @@
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);

namespace Magento\Framework\Search\Adapter;

/**
* Interface \Magento\Framework\Search\Adapter\OptionsInterface
*
* @api
*/
interface OptionsInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,14 @@
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);

namespace Magento\Framework\Search\Adapter\Preprocessor;

/**
* Interface \Magento\Framework\Search\Adapter\Preprocessor\PreprocessorInterface
*
* @api
*/
interface PreprocessorInterface
{
Expand Down
4 changes: 4 additions & 0 deletions lib/internal/Magento/Framework/Search/AdapterInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);

namespace Magento\Framework\Search;

use Magento\Framework\Search\Response\QueryResponse;

/**
* Search Adapter interface
*
* @api
*/
interface AdapterInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);

namespace Magento\Framework\Search\Dynamic\Algorithm;

use Magento\Framework\DB\Ddl\Table;
Expand All @@ -12,6 +14,7 @@
/**
* Interface \Magento\Framework\Search\Dynamic\Algorithm\AlgorithmInterface
*
* @api
*/
interface AlgorithmInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);

namespace Magento\Framework\Search\Request\Aggregation;

/**
* Interface \Magento\Framework\Search\Request\Aggregation\StatusInterface
*
* @api
*/
interface StatusInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,15 @@
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);

namespace Magento\Framework\Search\Request;

/**
* Resolve table name by provided dimensions. Scope Resolver must accept all dimensions that potentially can be used to
* resolve table name, but certain implementation can filter them if needed
*
* @api
*/
interface IndexScopeResolverInterface
{
Expand Down
4 changes: 4 additions & 0 deletions lib/internal/Magento/Framework/Search/ResponseInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);

namespace Magento\Framework\Search;

/**
* Search Request
*
* @api
*/
interface ResponseInterface extends \IteratorAggregate, \Countable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,14 @@
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);

namespace Magento\Framework\Search\SearchEngine;

/**
* Interface \Magento\Framework\Search\SearchEngine\ConfigInterface
*
* @api
*/
interface ConfigInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);

namespace Magento\Framework\Search;

/**
* Search Engine interface
*
* @api
*/
interface SearchEngineInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
/**
* Interface \Magento\Framework\Session\Config\ConfigInterface
*
* @api
*/
interface ConfigInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);

namespace Magento\Framework\Session;

/**
* Interface \Magento\Framework\Session\SaveHandlerInterface
*
* @api
*/
interface SaveHandlerInterface extends \SessionHandlerInterface
{
Expand Down
3 changes: 3 additions & 0 deletions lib/internal/Magento/Framework/Session/StorageInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);

namespace Magento\Framework\Session;

/**
* Interface \Magento\Framework\Session\StorageInterface
*
* @api
*/
interface StorageInterface
{
Expand Down
4 changes: 4 additions & 0 deletions lib/internal/Magento/Framework/Session/ValidatorInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,14 @@
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);

namespace Magento\Framework\Session;

/**
* Session validator interface
*
* @api
*/
interface ValidatorInterface
{
Expand Down