You are here

public function SplashifyGroupEntity::getOwner in Splashify 8.2

Returns the entity owner's user entity.

Return value

\Drupal\user\UserInterface The owner user entity.

Overrides EntityOwnerInterface::getOwner

File

src/Entity/SplashifyGroupEntity.php, line 102

Class

SplashifyGroupEntity
Defines the Splashify group entity entity.

Namespace

Drupal\splashify\Entity

Code

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