factory.php 400 B

1234567891011121314151617181920212223242526
  1. <?php namespace System\Cache;
  2. class Factory {
  3. /**
  4. * Create a cache 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 'memcached':
  16. return new Driver\Memcached;
  17. default:
  18. throw new \Exception("Cache driver [$driver] is not supported.");
  19. }
  20. }
  21. }