factory.php 447 B

1234567891011121314151617181920212223242526272829
  1. <?php namespace System\Session;
  2. class Factory {
  3. /**
  4. * Create a session driver instance.
  5. *
  6. * @param string $driver
  7. * @return Driver
  8. */
  9. public static function make($driver)
  10. {
  11. switch ($driver)
  12. {
  13. case 'file':
  14. return new Driver\File;
  15. case 'db':
  16. return new Driver\DB;
  17. case 'memcached':
  18. return new Driver\Memcached;
  19. default:
  20. throw new \Exception("Session driver [$driver] is not supported.");
  21. }
  22. }
  23. }