value = $value; $this->context = $context; $this->type = $type; $this->id = $id; } /** * Get the scalar value of a term * * @return string */ public function getValue() { return $this->value; } /** * Get the content of a term * * @return string */ public function getContext() { return $this->context; } /** * @return ControlProviderInterface */ public function getType() { return $this->type; } /** * @return mixed */ public function getId() { return $this->id; } }