You are here

public function Pet::setSubject in Previewable email templates 8.4

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

Overrides PetInterface::setSubject

File

src/Entity/Pet.php, line 319

Class

Pet
Defines pet entity class.

Namespace

Drupal\pet\Entity

Code

public function setSubject($subject) {
  $this
    ->set('subject', $subject);
  return $this;
}