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