public function MediaGallery::setOwnerId in Media Gallery 8
Sets the entity owner's user ID.
Parameters
int $uid: The owner user id.
Return value
$this
Overrides EntityOwnerInterface::setOwnerId
File
- src/
Entity/ MediaGallery.php, line 133
Class
- MediaGallery
- Defines the media gallery entity class.
Namespace
Drupal\media_gallery\EntityCode
public function setOwnerId($uid) {
$this
->set('uid', $uid);
return $this;
}