isValid; } public function getDiscount(float $amount): float { if (! $this->isValid || ! $this->coupon) { return 0; } return $this->coupon->calculateDiscount($amount); } }