Skip to content

Commit 48493c1

Browse files
author
Oleksii Korshenko
committed
Merge remote-tracking branch 'mainline/develop' into MAGETWO-70191-PR-1563
2 parents 919e0cb + d0509d2 commit 48493c1

File tree

12 files changed

+60
-1
lines changed

12 files changed

+60
-1
lines changed

Block/Adminhtml/System/Config/TestConnection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
/**
99
* Search engine test connection block
10-
*
10+
* @api
1111
*/
1212
class TestConnection extends \Magento\Config\Block\System\Config\Form\Field
1313
{

Model/Adminhtml/Search/Grid/Options.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
*/
88
namespace Magento\AdvancedSearch\Model\Adminhtml\Search\Grid;
99

10+
/**
11+
* @api
12+
*/
1013
class Options implements \Magento\Framework\Option\ArrayInterface
1114
{
1215
/**

Model/Client/ClientFactoryInterface.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
*/
66
namespace Magento\AdvancedSearch\Model\Client;
77

8+
/**
9+
* @api
10+
*/
811
interface ClientFactoryInterface
912
{
1013
/**

Model/Client/ClientInterface.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
*/
66
namespace Magento\AdvancedSearch\Model\Client;
77

8+
/**
9+
* @api
10+
*/
811
interface ClientInterface
912
{
1013
/**

Model/Client/ClientOptionsInterface.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
*/
66
namespace Magento\AdvancedSearch\Model\Client;
77

8+
/**
9+
* @api
10+
*/
811
interface ClientOptionsInterface
912
{
1013
/**

Model/Client/ClientResolver.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
use \Magento\Framework\ObjectManagerInterface;
99
use \Magento\Framework\App\Config\ScopeConfigInterface;
1010

11+
/**
12+
* @api
13+
*/
1114
class ClientResolver
1215
{
1316
/**

Model/Recommendations/DataProvider.php

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

1313
class DataProvider implements SuggestedQueriesInterface
1414
{
15+
/**
16+
* @deprecated
17+
* @see SuggestedQueriesInterface::SEARCH_RECOMMENDATIONS_ENABLED
18+
*/
1519
const CONFIG_IS_ENABLED = 'catalog/search/search_recommendations_enabled';
20+
21+
/**
22+
* @deprecated
23+
* @see SuggestedQueriesInterface::SEARCH_RECOMMENDATIONS_COUNT_RESULTS_ENABLED
24+
*/
1625
const CONFIG_RESULTS_COUNT_ENABLED = 'catalog/search/search_recommendations_count_results_enabled';
26+
27+
/**
28+
* @deprecated
29+
* @see SuggestedQueriesInterface::SEARCH_RECOMMENDATIONS_COUNT
30+
*/
1731
const CONFIG_RESULTS_COUNT = 'catalog/search/search_recommendations_count';
1832

1933
/**

Model/ResourceModel/Index.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
use Magento\Framework\EntityManager\MetadataPool;
1212
use Magento\Catalog\Api\Data\CategoryInterface;
1313

14+
/**
15+
* @api
16+
*/
1417
class Index extends AbstractDb
1518
{
1619
/**

Model/ResourceModel/Recommendations.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
* Catalog search recommendations resource model
1010
*
1111
* @author Magento Core Team <[email protected]>
12+
* @api
1213
*/
1314
class Recommendations extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
1415
{

Model/ResourceModel/Search/Grid/Collection.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
*/
66
namespace Magento\AdvancedSearch\Model\ResourceModel\Search\Grid;
77

8+
/**
9+
* @api
10+
*/
811
class Collection extends \Magento\Search\Model\ResourceModel\Query\Collection
912
{
1013
/**

0 commit comments

Comments
 (0)