accountType = $accountType; return $this; } public function withInitialBalance(float $initialBalance): Builder { $this->balance += $initialBalance; return $this; } public function withMonthlyFee(float $monthlyFee): Builder { $this->monthlyFee = $monthlyFee; return $this; } }