value = $value; $this->currency = $currency; } public function getValue(): int { return $this->value; } public function formatted(): string { return money($this->value, $this->currency)->format(); } }