name = $name; $this->countryId = $countryId; $this->stateId = $stateId; $this->postCodes = $postCodes; $this->status = $status; } /** * @return string */ public function getName(): string { return $this->name; } /** * @return int */ public function getCountryId(): int { return $this->countryId; } /** * @return int */ public function getStateId(): int { return $this->stateId; } /** * @return array */ public function getPostCodes(): array { return array_map('trim', explode(',', $this->postCodes)); } /** * @return int */ public function getStatus(): int { return $this->status; } }