Explorar el Código

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 hace 9 años
padre
commit
e340bb76f6
Se han modificado 1 ficheros con 4 adiciones y 2 borrados
  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;
-}
+}