You are here

public function DateRangeValue::getEnd in Search API Solr 4.x

Same name and namespace in other branches
  1. 8.3 src/Plugin/search_api/data_type/value/DateRangeValue.php \Drupal\search_api_solr\Plugin\search_api\data_type\value\DateRangeValue::getEnd()
  2. 8.2 src/Plugin/search_api/data_type/value/DateRangeValue.php \Drupal\search_api_solr\Plugin\search_api\data_type\value\DateRangeValue::getEnd()

Retrieves the end date.

Return value

string The end date.

Overrides DateRangeValueInterface::getEnd

File

src/Plugin/search_api/data_type/value/DateRangeValue.php, line 47

Class

DateRangeValue
Represents a single date range value.

Namespace

Drupal\search_api_solr\Plugin\search_api\data_type\value

Code

public function getEnd() {
  return $this->end;
}