Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
framework
Search
Request
Aggregation
Range.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Framework\Search\Request\Aggregation
;
7
12
class
Range
13
{
17
protected
$from
;
18
22
protected
$to
;
23
29
public
function
__construct
(
$from
,
$to
)
30
{
31
$this->from =
$from
;
32
$this->to =
$to
;
33
}
34
41
public
function
getFrom
()
42
{
43
return
$this->from
;
44
}
45
52
public
function
getTo
()
53
{
54
return
$this->to
;
55
}
56
}
Magento\Framework\Search\Request\Aggregation\Range
Definition:
Range.php:12
Magento\Framework\Search\Request\Aggregation\Range\$from
$from
Definition:
Range.php:17
Magento\Framework\Search\Request\Aggregation\Range\$to
$to
Definition:
Range.php:22
Magento\Framework\Search\Request\Aggregation\Range\getFrom
getFrom()
Definition:
Range.php:41
Magento\Framework\Search\Request\Aggregation\Range\getTo
getTo()
Definition:
Range.php:52
Magento\Framework\Search\Request\Aggregation\Range\__construct
__construct($from, $to)
Definition:
Range.php:29
Magento\Framework\Search\Request\Aggregation
Definition:
DynamicBucket.php:6