Browse code

Created repository.

DoubleBastionAdmin authored on 01/03/2022 23:31:10
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,17 @@
1
+<?php
2
+
3
+namespace Phaxio\Account;
4
+
5
+class Status extends \Phaxio\AbstractResource
6
+{
7
+    public static function init($phaxio) {
8
+        return new self($phaxio);
9
+    }
10
+
11
+    public function retrieve() {
12
+        $result = $this->phaxio->doRequest("GET", 'account/status');
13
+        $this->exchangeArray($result->getData());
14
+
15
+        return $this;
16
+    }
17
+}