summaryrefslogtreecommitdiff
path: root/shell/bin/whoami.php
diff options
context:
space:
mode:
Diffstat (limited to 'shell/bin/whoami.php')
-rw-r--r--shell/bin/whoami.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/shell/bin/whoami.php b/shell/bin/whoami.php
index 84db5a1..7e560f2 100644
--- a/shell/bin/whoami.php
+++ b/shell/bin/whoami.php
@@ -1,4 +1,7 @@
<?php
-function main($args) {
- echo get_current_user();
+class p_whoami extends prog {
+ public static function main($args, $env) {
+ echo get_current_user();
+ }
}
+