You are here

public function Invite::getOwner in Invite 8

Returns the entity owner's user entity.

Return value

\Drupal\user\UserInterface The owner user entity.

Overrides EntityOwnerInterface::getOwner

File

src/Entity/Invite.php, line 135

Class

Invite
Defines the Invite entity.

Namespace

Drupal\invite\Entity

Code

public function getOwner() {
  return $this
    ->get('user_id')->entity;
}