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