You are here

public function Event::getOwner in Event 8

Returns the entity owner's user entity.

Return value

\Drupal\user\UserInterface The owner user entity.

Overrides EntityOwnerInterface::getOwner

File

src/Entity/Event.php, line 181

Class

Event
Defines the Event entity.

Namespace

Drupal\event\Entity

Code

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