Skip to content

Commit

Permalink
add account statuses
Browse files Browse the repository at this point in the history
  • Loading branch information
gaalferov committed Apr 4, 2021
1 parent 187313f commit a3c8a70
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions src/VPNClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,36 @@
*/
class VPNClient
{
/**
* @var int
*/
public const STATUS_ACTIVE = 1;

/**
* @var int
*/
public const STATUS_SUSPENDED = 2;

/**
* @var int
*/
public const STATUS_CLOSED = 3;

/**
* @var int
*/
public const STATUS_PENDING = 4;

/**
* @var int
*/
public const STATUS_CAP_REACHED = 5;

/**
* @var int
*/
public const STATUS_PAUSED = 6;

/**
* @var string
*/
Expand Down

0 comments on commit a3c8a70

Please sign in to comment.