From a3c8a70373a9d15e21cdbfb1e512d9e2adb131ad Mon Sep 17 00:00:00 2001 From: Hennadii Alforov Date: Sun, 4 Apr 2021 21:32:19 +0300 Subject: [PATCH] add account statuses --- src/VPNClient.php | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/src/VPNClient.php b/src/VPNClient.php index 2699974..53ea84f 100644 --- a/src/VPNClient.php +++ b/src/VPNClient.php @@ -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 */