status = $status; } /** * Get the value of the object. * * @return string */ public function get(): string { return $this->status; } /** * @return string */ public function __toString(): string { return $this->get(); } }