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,16 @@
1
+<?php
2
+
3
+namespace Phaxio;
4
+
5
+class Faxes extends AbstractResources
6
+{
7
+    protected $collection_class = 'FaxCollection';
8
+
9
+    public function create($params) {
10
+        return Fax::create($this->phaxio, $params);
11
+    }
12
+
13
+    public function init($id) {
14
+        return Fax::init($this->phaxio, $id);
15
+    }
16
+}