name = $name; $this->email = $email; $this->street_one = $street_one; $this->street_two = $street_two; $this->city = $city; $this->state = $state; $this->post_code = $post_code; $this->country = $country; } /** * @return string */ public function getName(): string { return $this->name; } /** * @return string */ public function getEmail(): string { return $this->email; } /** * @return string */ public function getStreetOne(): string { return $this->street_one; } /** * @return string */ public function getStreetTwo(): string { return $this->street_two; } /** * @return string */ public function getCity(): string { return $this->city; } /** * @return string */ public function getState(): string { return $this->state; } /** * @return string */ public function getPostCode(): string { return $this->post_code; } /** * @return string */ public function getCountry(): string { return $this->country; } }