Skip to content

Commit

Permalink
Renamed two params for var
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCartpenter committed May 8, 2024
1 parent 5007729 commit 017ab99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions upload/catalog/controller/extension/payment/divido.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class ControllerExtensionPaymentDivido extends Controller {
public const STATUS_ACCEPTED = 'ACCEPTED', STATUS_ACTION_LENDER = 'ACTION-LENDER', STATUS_CANCELED = 'CANCELED', STATUS_COMPLETED = 'COMPLETED', STATUS_DEPOSIT_PAID = 'DEPOSIT-PAID', STATUS_DECLINED = 'DECLINED', STATUS_DEFERRED = 'DEFERRED', STATUS_REFERRED = 'REFERRED', STATUS_FULFILLED = 'FULFILLED', STATUS_SIGNED = 'SIGNED';

/**
* @param array<string, int> $status_id
* @var array<string, int> $status_id
*/
private array $status_id = [
self::STATUS_ACCEPTED => 1,
Expand All @@ -24,7 +24,7 @@ class ControllerExtensionPaymentDivido extends Controller {
];

/**
* @param array<string, string> $history_messages
* @var array<string, string> $history_messages
*/
private array $history_messages = [
self::STATUS_ACCEPTED => 'Credit request accepted',
Expand Down

0 comments on commit 017ab99

Please sign in to comment.