public function Workspace::setBinderId in Opigno Moxtra 8
Same name and namespace in other branches
- 3.x 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\EntityCode
public function setBinderId($id) {
$this
->set('binder_id', $id);
return $this;
}