You are here

public function Developer::setEmail in Apigee Edge 8

1 call to Developer::setEmail()
Developer::setOwnerId in src/Entity/Developer.php
Sets the entity owner's user ID.

File

src/Entity/Developer.php, line 365

Class

Developer
Defines the Developer entity class.

Namespace

Drupal\apigee_edge\Entity

Code

public function setEmail(string $email) : void {
  $this->decorated
    ->setEmail($email);
  if ($this->originalEmail === NULL) {
    $this->originalEmail = $email;
  }
}