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.php15
1 files changed, 8 insertions, 7 deletions
diff --git a/vendor/ruflin/elastica/lib/Elastica/Aggregation/DateRange.php b/vendor/ruflin/elastica/lib/Elastica/Aggregation/DateRange.php
index 37aca87b..deb5881d 100644
--- a/vendor/ruflin/elastica/lib/Elastica/Aggregation/DateRange.php
+++ b/vendor/ruflin/elastica/lib/Elastica/Aggregation/DateRange.php
@@ -1,21 +1,22 @@
<?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.
+ *
+ * @link http://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-bucket-daterange-aggregation.html
*/
class DateRange extends Range
{
/**
- * Set the formatting for the returned date values
+ * Set the formatting for the returned date values.
+ *
* @param string $format see documentation for formatting options
- * @return Range
+ *
+ * @return $this
*/
public function setFormat($format)
{
return $this->setParam('format', $format);
}
-} \ No newline at end of file
+}