_name = 'Variable['.$name.']'; $this->resetToPrior(); } public function getValue(): mixed { return $this->_value; } public function setValue(mixed $value): void { $this->_value = $value; } public function resetToPrior(): void { $this->_value = $this->_prior; } public function __toString(): string { return $this->_name; } }