/framework/core/app/Application.php
http://zoop.googlecode.com/ · PHP · 22 lines · 12 code · 1 blank · 9 comment · 0 complexity · f862878b735be73e3104f4049e366847 MD5 · raw file
- <?php
- /**
- * class Application
- *
- * @package app
- * @author Rick Gigger
- **/
- class Application
- {
- function __construct()
- {
- // should we always start the session here? even if we aren't using the session module
- // aren't we also calling it in the session module?
- // oh, I don't think this even gets used cause nothing really extends it yet
- session_start();
- }
-
- function run()
- {
- trigger_error('run does nothing for Application');
- }
- }