<?php
class BaseUser {
public static function who() {
echo "I'm a user";
}
public static function test() {
self::who();
}
}
class AdminUser extends BaseUser {
public static function who() {
echo "I'm an admin";
}
}
AdminUser::test(); // What will be printed?
?>