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.

Differences Between: [Versions 310 and 403] [Versions 311 and 403] [Versions 39 and 403] [Versions 400 and 403] [Versions 401 and 403]

   1  <?php
   2  
   3  declare(strict_types=1);
   4  
   5  /**
   6   * SimplePie Redis Cache Extension
   7   *
   8   * @package SimplePie
   9   * @author Jan Kozak <galvani78@gmail.com>
  10   * @link http://galvani.cz/
  11   * @license http://www.opensource.org/licenses/bsd-license.php BSD License
  12   * @version 0.2.9
  13   */
  14  
  15  use SimplePie\Cache\Redis;
  16  
  17  class_exists('SimplePie\Cache\Redis');
  18  
  19  // @trigger_error(sprintf('Using the "SimplePie_Cache_Redis" class is deprecated since SimplePie 1.7.0, use "SimplePie\Cache\Redis" instead.'), \E_USER_DEPRECATED);
  20  
  21  if (\false) {
  22      /** @deprecated since SimplePie 1.7.0, use "SimplePie\Cache\Redis" instead */
  23      class SimplePie_Cache_Redis extends Redis
  24      {
  25      }
  26  }