summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/lib/Elastica/Aggregation/DateRange.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/ruflin/elastica/lib/Elastica/Aggregation/DateRange.php')
-rw-r--r--vendor/ruflin/elastica/lib/Elastica/Aggregation/DateRange.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/vendor/ruflin/elastica/lib/Elastica/Aggregation/DateRange.php b/vendor/ruflin/elastica/lib/Elastica/Aggregation/DateRange.php
new file mode 100644
index 00000000..37aca87b
--- /dev/null
+++ b/vendor/ruflin/elastica/lib/Elastica/Aggregation/DateRange.php
@@ -0,0 +1,21 @@
+<?php
+
+namespace Elastica\Aggregation;
+
+/**
+ * Class DateRange
+ * @package Elastica\Aggregation
+ * @link http://www.elasticsearch.org/guide/en/elasticsearch/reference/master/search-aggregations-bucket-daterange-aggregation.html
+ */
+class DateRange extends Range
+{
+ /**
+ * Set the formatting for the returned date values
+ * @param string $format see documentation for formatting options
+ * @return Range
+ */
+ public function setFormat($format)
+ {
+ return $this->setParam('format', $format);
+ }
+} \ No newline at end of file