You are here

public function PriceList::getOwner in Commerce Pricelist 8

Returns the entity owner's user entity.

Return value

\Drupal\user\UserInterface The owner user entity.

Overrides EntityOwnerInterface::getOwner

File

src/Entity/PriceList.php, line 119

Class

PriceList
Defines the Price list entity.

Namespace

Drupal\commerce_pricelist\Entity

Code

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