public function VariableObject::setId in Business Rules 2.x
Same name and namespace in other branches
- 8 src/VariableObject.php \Drupal\business_rules\VariableObject::setId()
Set the variable id.
Parameters
string $id: The variable id.
1 call to VariableObject::setId()
- VariableObject::__construct in src/
VariableObject.php - VariableObject constructor.
File
- src/
VariableObject.php, line 65
Class
- VariableObject
- Class Variable to be used on BusinessRulesVariable plugins.
Namespace
Drupal\business_rulesCode
public function setId($id) {
$this->id = $id;
}