You are here

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

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

Sets the entity's Moxtra binder ID.

Parameters

string $id: The Moxtra binder ID.

Return value

$this

Overrides WorkspaceInterface::setBinderId

File

src/Entity/Workspace.php, line 122

Class

Workspace
Defines the Workspace entity.

Namespace

Drupal\opigno_moxtra\Entity

Code

public function setBinderId($id) {
  $this
    ->set('binder_id', $id);
  return $this;
}