base = $base; $this->quote = $quote; } public function getBase(): Currency { return $this->base; } public function getQuote(): Currency { return $this->quote; } public function __toString() { return $this->base . '/' . $this->quote; } }