driver.php 662 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php namespace System\Cache;
  2. interface Driver {
  3. /**
  4. * Determine if an item exists in the cache.
  5. *
  6. * @param string $key
  7. * @return bool
  8. */
  9. public function has($key);
  10. /**
  11. * Get an item from the cache.
  12. *
  13. * @param string $key
  14. * @param mixed $default
  15. * @return mixed
  16. */
  17. public function get($key, $default = null);
  18. /**
  19. * Write an item to the cache.
  20. *
  21. * @param string $key
  22. * @param mixed $value
  23. * @param int $minutes
  24. * @return void
  25. */
  26. public function put($key, $value, $minutes);
  27. /**
  28. * Delete an item from the cache.
  29. *
  30. * @param string $key
  31. * @return void
  32. */
  33. public function forget($key);
  34. }