You are here

public function IndividualType::setDescription in CRM Core 8.3

Same name and namespace in other branches
  1. 8 modules/crm_core_contact/src/Entity/IndividualType.php \Drupal\crm_core_contact\Entity\IndividualType::setDescription()
  2. 8.2 modules/crm_core_contact/src/Entity/IndividualType.php \Drupal\crm_core_contact\Entity\IndividualType::setDescription()

Sets the entity description.

Parameters

string $description: The entity description.

Return value

$this

Overrides EntityDescriptionInterface::setDescription

File

modules/crm_core_contact/src/Entity/IndividualType.php, line 139

Class

IndividualType
CRM Individual Type Entity Class.

Namespace

Drupal\crm_core_contact\Entity

Code

public function setDescription($description) {
  $this->description = $description;
  return $this;
}