You are here

public function EntitySuggestion::setEntityUuid in Linkit 8.5

Sets the entity uuid.

Parameters

string $entity_uuid: The entity uuid.

Return value

$this

File

src/Suggestion/EntitySuggestion.php, line 39

Class

EntitySuggestion
Defines a entity suggestion.

Namespace

Drupal\linkit\Suggestion

Code

public function setEntityUuid($entity_uuid) {
  $this->entityUuid = $entity_uuid;
  return $this;
}