You are here

public function TextValue::setProperties in Search API 8

Sets the properties of this text value.

Parameters

array $properties: An associative array of property values.

Return value

$this

Overrides TextValueInterface::setProperties

File

src/Plugin/search_api/data_type/value/TextValue.php, line 127

Class

TextValue
Represents a single value of a fulltext field.

Namespace

Drupal\search_api\Plugin\search_api\data_type\value

Code

public function setProperties(array $properties) {
  $this->properties = $properties;
  return $this;
}