You are here

public function Pet::setTitle in Previewable email templates 8.3

Same name and namespace in other branches
  1. 8.4 src/Entity/Pet.php \Drupal\pet\Entity\Pet::setTitle()
  2. 8 src/Entity/Pet.php \Drupal\pet\Entity\Pet::setTitle()

Set the Pet title.

Parameters

string $title: Title.

Return value

\Drupal\pet\Entity\PetInterface Pet entity.

Overrides PetInterface::setTitle

File

src/Entity/Pet.php, line 585

Class

Pet
Defines the pet entity.

Namespace

Drupal\pet\Entity

Code

public function setTitle($title) {
  $this
    ->set('title', $title);
  return $this;
}