public function PaymentMethodConfiguration::getOwnerId in Payment 8.2
Returns the entity owner's user ID.
Return value
int|null The owner user ID, or NULL in case the user ID field has not been set on the entity.
Overrides EntityOwnerInterface::getOwnerId
1 call to PaymentMethodConfiguration::getOwnerId()
- PaymentMethodConfiguration::getOwner in src/
Entity/ PaymentMethodConfiguration.php - Returns the entity owner's user entity.
File
- src/
Entity/ PaymentMethodConfiguration.php, line 148
Class
- PaymentMethodConfiguration
- Defines a payment method configuration entity.
Namespace
Drupal\payment\EntityCode
public function getOwnerId() {
return $this->ownerId;
}