You are here

public function TestEntityType::setKey in Drupal 10

Sets a specific entity key.

Parameters

string $key: The name of the entity key.

string $value: The new value of the key.

Return value

$this

File

core/modules/views/tests/src/Kernel/Entity/EntityViewsDataTest.php, line 815

Class

TestEntityType
Entity type class which allows changing the entity keys.

Namespace

Drupal\Tests\views\Kernel\Entity

Code

public function setKey($key, $value) {
  $this->entity_keys[$key] = $value;
  return $this;
}