summaryrefslogtreecommitdiff
path: root/framework/Web/THttpSession.php
diff options
context:
space:
mode:
authorxue <>2006-02-17 05:19:25 +0000
committerxue <>2006-02-17 05:19:25 +0000
commit7b38480de52c1d042ea542e2d06913a8c9b645fc (patch)
tree67ff025fb171a5325ac8fdc75a281ce8a19a2bd5 /framework/Web/THttpSession.php
parentae1c1995b2fec431afe7cca23b2697e1bef17baf (diff)
Add TApplicationComponent class and adjusted the relevant classes.
Diffstat (limited to 'framework/Web/THttpSession.php')
-rw-r--r--framework/Web/THttpSession.php10
1 files changed, 1 insertions, 9 deletions
diff --git a/framework/Web/THttpSession.php b/framework/Web/THttpSession.php
index 605b858a..1292b548 100644
--- a/framework/Web/THttpSession.php
+++ b/framework/Web/THttpSession.php
@@ -55,7 +55,7 @@
* @package System.Web
* @since 3.0
*/
-class THttpSession extends TComponent implements IteratorAggregate,ArrayAccess,IModule
+class THttpSession extends TApplicationComponent implements IteratorAggregate,ArrayAccess,IModule
{
/**
* @var boolean whether this module has been initialized
@@ -606,14 +606,6 @@ class THttpSession extends TComponent implements IteratorAggregate,ArrayAccess,I
{
unset($_SESSION[$offset]);
}
-
- /**
- * @return TApplication application instance
- */
- public function getApplication()
- {
- return Prado::getApplication();
- }
}
/**