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,14 @@
1
+<?php
2
+
3
+namespace Phaxio;
4
+
5
+class StringUpload
6
+{
7
+    public $string;
8
+    public $extension;
9
+
10
+    public function __construct($str, $ext) {
11
+        $this->string = $str;
12
+        $this->extension = $ext;
13
+    }
14
+}