You are here

public function Workspace::setMembers in Opigno Moxtra 3.x

Same name and namespace in other branches
  1. 8 src/Entity/Workspace.php \Drupal\opigno_moxtra\Entity\Workspace::setMembers()

Sets the entity's Moxtra workspace Members value.

Parameters

array $uids: The Workspace members.

Return value

$this

Overrides WorkspaceInterface::setMembers

File

src/Entity/Workspace.php, line 183

Class

Workspace
Defines the Workspace entity.

Namespace

Drupal\opigno_moxtra\Entity

Code

public function setMembers($uids) {
  $this
    ->set('members', $uids);
  return $this;
}