public function WebformAccessGroup::setUserIds in Webform 8.5
Same name and namespace in other branches
- 6.x modules/webform_access/src/Entity/WebformAccessGroup.php \Drupal\webform_access\Entity\WebformAccessGroup::setUserIds()
Set user ids assigned to webform access group.
Parameters
array $uids: An array of user ids.
Return value
$this
Overrides WebformAccessGroupInterface::setUserIds
File
- modules/
webform_access/ src/ Entity/ WebformAccessGroup.php, line 168
Class
- WebformAccessGroup
- Defines the webform access group entity.
Namespace
Drupal\webform_access\EntityCode
public function setUserIds(array $uids) {
$this->userIds = $uids;
return $this;
}