aboutsummaryrefslogtreecommitdiff
path: root/w/class/configtest.php
diff options
context:
space:
mode:
Diffstat (limited to 'w/class/configtest.php')
-rw-r--r--w/class/configtest.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/w/class/configtest.php b/w/class/configtest.php
new file mode 100644
index 0000000..cd72753
--- /dev/null
+++ b/w/class/configtest.php
@@ -0,0 +1,22 @@
+<?php
+
+abstract class Configtest
+{
+ protected static $info;
+
+ public static function setinfo($info)
+ {
+ self::$info = $info;
+ }
+
+ public static function info()
+ {
+ return self::$info;
+ }
+}
+
+
+
+
+
+?> \ No newline at end of file