Bladeren bron

PaymentUtils : correctif paramètre $comment

feature/souke
Guillaume Bourgeois 1 jaar geleden
bovenliggende
commit
fc53503bfb
1 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen
  1. +2
    -2
      common/logic/Payment/Service/PaymentUtils.php

+ 2
- 2
common/logic/Payment/Service/PaymentUtils.php Bestand weergeven

@@ -28,7 +28,7 @@ class PaymentUtils extends AbstractService implements UtilsInterface
$this->producerSolver = $this->loadService(ProducerSolver::class);
}

public function creditUser(User $user, float $amount, string $meanPayment, User $userAction, string $comment): void
public function creditUser(User $user, float $amount, string $meanPayment, User $userAction, string $comment = null): void
{
$this->paymentBuilder->createPayment(
Payment::TYPE_CREDIT,
@@ -41,7 +41,7 @@ class PaymentUtils extends AbstractService implements UtilsInterface
);
}

public function debitUser(User $user, float $amount, string $meanPayment, User $userAction, string $comment): void
public function debitUser(User $user, float $amount, string $meanPayment, User $userAction, string $comment = null): void
{
$this->paymentBuilder->createPayment(
Payment::TYPE_DEBIT,

Laden…
Annuleren
Opslaan