summaryrefslogtreecommitdiff
path: root/framework/Web/THttpSession.php
diff options
context:
space:
mode:
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();
- }
}
/**