aboutsummaryrefslogtreecommitdiff
path: root/app/class/configtest.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/class/configtest.php')
-rw-r--r--app/class/configtest.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/app/class/configtest.php b/app/class/configtest.php
new file mode 100644
index 0000000..cd72753
--- /dev/null
+++ b/app/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