소스 검색

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;
-}
+}