feat: rename finalize methods to complete for consistency in purchase processing

This commit is contained in:
2026-07-07 15:36:07 -03:00
parent c276ccd311
commit f18fbc8147
5 changed files with 6 additions and 6 deletions

View File

@@ -67,7 +67,7 @@ class CheckoutService
});
}
public function finalizePurchase(Purchase $purchase): Purchase
public function completePurchase(Purchase $purchase): Purchase
{
return DB::transaction(function () use ($purchase): Purchase {
/** @var Purchase $purchase */