public function Workflow::setOwnerId in Forms Steps 8
Sets the entity owner's user ID.
Parameters
int $uid: The owner user id.
Return value
$this
Overrides EntityOwnerInterface::setOwnerId
File
- src/
Entity/ Workflow.php, line 69
Class
- Workflow
- Defines the Workflow entity.
Namespace
Drupal\forms_steps\EntityCode
public function setOwnerId($uid) {
$this
->set('user_id', $uid);
return $this;
}