You are here

public function DateRangeValue::getEnd in Search API Solr 8.2

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. 4.x 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

Overrides DateRangeValueInterface::getEnd

File

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

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;
}