/framework/core/app/Application.php

http://zoop.googlecode.com/ · PHP · 22 lines · 12 code · 1 blank · 9 comment · 0 complexity · f862878b735be73e3104f4049e366847 MD5 · raw file

  1. <?php
  2. /**
  3. * class Application
  4. *
  5. * @package app
  6. * @author Rick Gigger
  7. **/
  8. class Application
  9. {
  10. function __construct()
  11. {
  12. // should we always start the session here? even if we aren't using the session module
  13. // aren't we also calling it in the session module?
  14. // oh, I don't think this even gets used cause nothing really extends it yet
  15. session_start();
  16. }
  17. function run()
  18. {
  19. trigger_error('run does nothing for Application');
  20. }
  21. }