You are here

public function SolrDocument::getValue in Search API Solr 8.3

Same name and namespace in other branches
  1. 8.2 src/Plugin/DataType/SolrDocument.php \Drupal\search_api_solr\Plugin\DataType\SolrDocument::getValue()
  2. 4.x src/Plugin/DataType/SolrDocument.php \Drupal\search_api_solr\Plugin\DataType\SolrDocument::getValue()

Gets the data value.

Return value

mixed The data value.

Overrides TypedData::getValue

File

src/Plugin/DataType/SolrDocument.php, line 67

Class

SolrDocument
Defines the "Solr document" data type.

Namespace

Drupal\search_api_solr\Plugin\DataType

Code

public function getValue() {
  return $this->item;
}