Skip to content

Commit

Permalink
feat: update const for transaction status
Browse files Browse the repository at this point in the history
  • Loading branch information
gasspper committed Aug 9, 2024
1 parent 3350355 commit 71c525c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions plugin/src/Models/Transaction.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ class Transaction extends BaseModel

const STATUS_PREPARED = 'prepared';
const STATUS_INITIALIZED = 'initialized';
const STATUS_FAILED = 'failed';
const STATUS_ABORTED_BY_USER = 'aborted_by_user';
const STATUS_APPROVED = 'approved';
const STATUS_TIMEOUT = 'timeout';
const STATUS_ABORTED_BY_USER = 'aborted_by_user';
const STATUS_FAILED = 'failed';

const PRODUCT_WEBPAY_PLUS = 'webpay_plus';
const PRODUCT_WEBPAY_ONECLICK = 'webpay_oneclick';
Expand Down

0 comments on commit 71c525c

Please sign in to comment.