You are here

public function Feed::getOwner in Feeds 8.3

Returns the entity owner's user entity.

Return value

\Drupal\user\UserInterface The owner user entity.

Overrides EntityOwnerInterface::getOwner

File

src/Entity/Feed.php, line 210

Class

Feed
Defines the feed entity class.

Namespace

Drupal\feeds\Entity

Code

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