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,21 @@
1
+<?php
2
+
3
+namespace Phaxio;
4
+
5
+class PhaxioPublic
6
+{
7
+    private $phaxio;
8
+
9
+    public function __construct($phaxio)
10
+    {
11
+        $this->phaxio = $phaxio;
12
+    }
13
+
14
+    public function areaCodes() {
15
+        return new PhaxioPublic\AreaCodes($this->phaxio);
16
+    }
17
+
18
+    public function countries() {
19
+        return new PhaxioPublic\Countries($this->phaxio);
20
+    }
21
+}