rate = $rate; $taxRate->countryCode = $countryCode; $this->rates[$countryCode] = $taxRate; return $this; } /** * @return array */ public function jsonSerialize() { $output = [ 'rates' => array_values($this->rates) ]; if (!empty($this->subject)) { $output['subject'] = $this->subject; } if (!empty($this->exemption)) { $output['exemption'] = $this->exemption; } return $output; } }