* @deprecated */ class helpers_PlatformInstance { /** * Returns a whenever or not the current instance is used as demo instance * * @deprecated use ApplicationHelper::isDemo * @return boolean */ public static function isDemo() { common_Logger::w('Deprecated fucntion helpers_PlatformInstance::isDemo called, please use oat\tao\helpers\ApplicationHelper'); return false; } /** * Returns whenever or not Tao is installed on windows * @deprecated use SystemHelper::isWindows * @return boolean */ public static function isWindows() { return SystemHelper::isWindows(); } }