Skip to content

Commit

Permalink
fix: SignerInfo and TransactionInfo status
Browse files Browse the repository at this point in the history
  • Loading branch information
Gwemox committed Nov 12, 2021
1 parent 2413233 commit 12c1ea8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
10 changes: 10 additions & 0 deletions Model/SignerInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@

class SignerInfo
{
public const STATUS_WAITING = 'waiting';
public const STATUS_READY = 'ready';
public const STATUS_ACCESSED = 'accessed';
public const STATUS_CODE_SENT = 'code-sent';
public const STATUS_SIGNED = 'signed';
public const STATUS_PENDING_ID_DOCS = 'pending-id-docs';
public const STATUS_PENDING_VALIDATION = 'pending-validation';
public const STATUS_CANCELED = 'canceled';
public const STATUS_FAILED = 'failed';

/**
* @var string
*/
Expand Down
8 changes: 1 addition & 7 deletions Model/TransactionInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,11 @@ class TransactionInfo
public const STATE_SUCCESS = 'SUCCESS';
public const STATE_ERROR = 'ERROR';

public const STATUS_WAITING = 'waiting';
public const STATUS_READY = 'ready';
public const STATUS_ACCESSED = 'accessed';
public const STATUS_CODE_SENT = 'code-sent';
public const STATUS_SIGNED = 'signed';
public const STATUS_PENDING_ID_DOCS = 'pending-id-docs';
public const STATUS_PENDING_VALIDATION = 'pending-validation';
public const STATUS_EXPIRED = 'expired';
public const STATUS_CANCELED = 'canceled';
public const STATUS_FAILED = 'failed';
public const STATUS_COMPLETED = 'completed';
public const STATUS_EXPIRED = 'expired';

/**
* @var string
Expand Down

0 comments on commit 12c1ea8

Please sign in to comment.