Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 4.3.x will end 7 October 2024 (12 months).
  • Bug fixes for security issues in 4.3.x will end 21 April 2025 (18 months).
  • PHP version: minimum PHP 8.0.0 Note: minimum PHP version has increased since Moodle 4.1. PHP 8.2.x is supported too.
   1  <?php
   2  
   3  namespace Kevinrob\GuzzleCache\Storage;
   4  
   5  use Kevinrob\GuzzleCache\CacheEntry;
   6  
   7  interface CacheStorageInterface
   8  {
   9      /**
  10       * @param string $key
  11       *
  12       * @return CacheEntry|null the data or false
  13       */
  14      public function fetch($key);
  15  
  16      /**
  17       * @param string     $key
  18       * @param CacheEntry $data
  19       *
  20       * @return bool
  21       */
  22      public function save($key, CacheEntry $data);
  23  
  24      /**
  25       * @param string $key
  26       *
  27       * @return bool
  28       */
  29      public function delete($key);
  30  }