You are here

public function FieldDefinition::setTargetBundle in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Field/FieldDefinition.php \Drupal\Core\Field\FieldDefinition::setTargetBundle()

Set the target bundle.

Parameters

string $bundle: The target bundle.

Return value

$this

File

core/lib/Drupal/Core/Field/FieldDefinition.php, line 90

Class

FieldDefinition
A class for defining entity field definitions.

Namespace

Drupal\Core\Field

Code

public function setTargetBundle($bundle) {
  $this->definition['bundle'] = $bundle;
  return $this;
}