瀏覽代碼

Update Session.hx (#5116)

Nobody seemed to have issues with this (since 2010), todo can be removed... Let's use the description of php manual..
Mark Knol 9 年之前
父節點
當前提交
e340bb76f6
共有 1 個文件被更改,包括 4 次插入2 次删除
  1. 4 2
      std/php/Session.hx

+ 4 - 2
std/php/Session.hx

@@ -20,8 +20,10 @@
  * DEALINGS IN THE SOFTWARE.
  */
 package php;
+
 /**
-* TODO: TEST IT!
+	Session consists of a way to preserve certain data across 
+	subsequent accesses.
 */
 class Session {
 	public static function getCacheLimiter() {
@@ -163,4 +165,4 @@ enum CacheLimiter {
 	Private;
 	NoCache;
 	PrivateNoExpire;
-}
+}