Back to RedisStorage class

Method isSupported

public static bool
isSupported
()
Test to see if the storage handler is available.
Returns
  • bool
Since
  • 3.4
Class: RedisStorage
Project: Joomla

Method isSupported - Source code

/**
 * Test to see if the storage handler is available.
 *
 * @return  boolean
 *
 * @since   3.4
 */
public static function isSupported()
{
    return class_exists('\\Redis');
}