You are here

public function VariableObject::setValue in Business Rules 2.x

Same name and namespace in other branches
  1. 8 src/VariableObject.php \Drupal\business_rules\VariableObject::setValue()

Set the variable value.

Parameters

mixed $value: The variable value.

1 call to VariableObject::setValue()
VariableObject::__construct in src/VariableObject.php
VariableObject constructor.

File

src/VariableObject.php, line 85

Class

VariableObject
Class Variable to be used on BusinessRulesVariable plugins.

Namespace

Drupal\business_rules

Code

public function setValue($value) {
  $this->value = $value;
}