value = $value; } /** * @return mixed */ public function get() { return $this->value; } /** * @param mixed $value */ public function set($value) { $this->value = $value; } }