public function ProductBundleItem::setOwnerId in Commerce Product Bundle 8
Sets the entity owner's user ID.
Parameters
int $uid: The owner user id.
Return value
$this
Overrides EntityOwnerInterface::setOwnerId
File
- src/
Entity/ ProductBundleItem.php, line 115
Class
- ProductBundleItem
- Defines the product bundle item entity.
Namespace
Drupal\commerce_product_bundle\EntityCode
public function setOwnerId($uid) {
$this
->set('uid', $uid);
return $this;
}