/framework/core/session/SessionFactory.php

http://zoop.googlecode.com/ · PHP · 9 lines · 8 code · 1 blank · 0 comment · 0 complexity · 69af007929fd03a328cd3a97e0d11fbe MD5 · raw file

  1. <?php
  2. class SessionFactory
  3. {
  4. static function getEngine($params)
  5. {
  6. return new SessionDb($params);
  7. }
  8. }