You are here

public function PaymentMethodConfiguration::setOwnerId in Payment 8.2

Sets the entity owner's user ID.

Parameters

int $uid: The owner user id.

Return value

$this

Overrides EntityOwnerInterface::setOwnerId

File

src/Entity/PaymentMethodConfiguration.php, line 130

Class

PaymentMethodConfiguration
Defines a payment method configuration entity.

Namespace

Drupal\payment\Entity

Code

public function setOwnerId($id) {
  $this->ownerId = $id;
  return $this;
}