public function Transaction::setOwnerId in Transaction 8
Sets the entity owner's user ID.
Parameters
int $uid: The owner user id.
Return value
$this
Overrides EntityOwnerInterface::setOwnerId
File
- src/
Entity/ Transaction.php, line 280
Class
- Transaction
- Provides the transaction content entity.
Namespace
Drupal\transaction\EntityCode
public function setOwnerId($uid) {
$this
->set('uid', $uid);
return $this;
}