Skip to content

Commit 2773aeb

Browse files
committed
MAGETWO-95259: CatalogSearch module deprecation must be reverted
1 parent 2f9b761 commit 2773aeb

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/Decimal.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,12 @@
1111
use Magento\Framework\Search\Request\FilterInterface;
1212

1313
/**
14-
* @deprecated
15-
* @see \Magento\ElasticSearch
14+
* Catalog search range request generator.
1615
*/
1716
class Decimal implements GeneratorInterface
1817
{
1918
/**
20-
* {@inheritdoc}
19+
* @inheritdoc
2120
*/
2221
public function getFilterData(Attribute $attribute, $filterName)
2322
{
@@ -31,7 +30,7 @@ public function getFilterData(Attribute $attribute, $filterName)
3130
}
3231

3332
/**
34-
* {@inheritdoc}
33+
* @inheritdoc
3534
*/
3635
public function getAggregationData(Attribute $attribute, $bucketName)
3736
{

app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/General.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,12 @@
1111
use Magento\Framework\Search\Request\FilterInterface;
1212

1313
/**
14-
* @deprecated
15-
* @see \Magento\ElasticSearch
14+
* Catalog search request generator.
1615
*/
1716
class General implements GeneratorInterface
1817
{
1918
/**
20-
* {@inheritdoc}
19+
* @inheritdoc
2120
*/
2221
public function getFilterData(Attribute $attribute, $filterName)
2322
{
@@ -30,7 +29,7 @@ public function getFilterData(Attribute $attribute, $filterName)
3029
}
3130

3231
/**
33-
* {@inheritdoc}
32+
* @inheritdoc
3433
*/
3534
public function getAggregationData(Attribute $attribute, $bucketName)
3635
{

app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/GeneratorInterface.php

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,16 @@
99
use Magento\Catalog\Model\ResourceModel\Eav\Attribute;
1010

1111
/**
12+
* Catalog search reguest generator interface.
13+
*
1214
* @api
1315
* @since 100.1.6
14-
* @deprecated
15-
* @see \Magento\ElasticSearch
1616
*/
1717
interface GeneratorInterface
1818
{
1919
/**
20-
* Get filter data for specific attribute
20+
* Get filter data for specific attribute.
21+
*
2122
* @param Attribute $attribute
2223
* @param string $filterName
2324
* @return array
@@ -26,7 +27,8 @@ interface GeneratorInterface
2627
public function getFilterData(Attribute $attribute, $filterName);
2728

2829
/**
29-
* Get aggregation data for specific attribute
30+
* Get aggregation data for specific attribute.
31+
*
3032
* @param Attribute $attribute
3133
* @param string $bucketName
3234
* @return array

0 commit comments

Comments
 (0)