Fixed syntax according to feedback.
diff --git a/system/libraries/Cache/drivers/Cache_redis.php b/system/libraries/Cache/drivers/Cache_redis.php
index 9eb7a8d..f3acc6e 100644
--- a/system/libraries/Cache/drivers/Cache_redis.php
+++ b/system/libraries/Cache/drivers/Cache_redis.php
@@ -30,11 +30,10 @@
 	/**
 	 * Default config
 	 *
-	 * @access private
 	 * @static
 	 * @var array
 	 */
-	private static $_default_config = array(
+	protected static $_default_config = array(
 		'host' => '127.0.0.1',
 		'port' => 6379,
 		'timeout' => 0
@@ -43,17 +42,15 @@
 	/**
 	 * Redis connection
 	 *
-	 * @access private
 	 * @var Redis
 	 */
-	private $_redis;
+	protected $_redis;
 
 	/**
 	 * Class destructor
 	 *
 	 * Closes the connection to Redis if present.
 	 *
-	 * @access public
 	 * @return void
 	 */
 	public function __destruct()
@@ -67,7 +64,6 @@
 	/**
 	 * Get cache
 	 *
-	 * @access public
 	 * @param string $key Cache key identifier
 	 * @return mixed
 	 */
@@ -79,7 +75,6 @@
 	/**
 	 * Save cache
 	 *
-	 * @access public
 	 * @param string  $key	 Cache key identifier
 	 * @param mixed	  $value Data to save
 	 * @param integer $ttl	 Time to live
@@ -95,7 +90,6 @@
 	/**
 	 * Delete from cache
 	 *
-	 * @access public
 	 * @param string $key Cache key
 	 * @return boolean
 	 */
@@ -107,7 +101,6 @@
 	/**
 	 * Clean cache
 	 *
-	 * @access public
 	 * @return boolean
 	 * @see Redis::flushDB()
 	 */
@@ -119,7 +112,6 @@
 	/**
 	 * Get cache driver info
 	 *
-	 * @access public
 	 * @param string $type Not supported in Redis. Only included in order to offer a
 	 *					   consistent cache API.
 	 * @return array
@@ -133,7 +125,6 @@
 	/**
 	 * Get cache metadata
 	 *
-	 * @access public
 	 * @param string $key Cache key
 	 * @return array
 	 */
@@ -153,7 +144,6 @@
 	/**
 	 * Check if Redis driver is supported
 	 *
-	 * @access public
 	 * @return boolean
 	 */
 	public function is_supported()
@@ -166,10 +156,7 @@
 		}
 		else
 		{
-			log_message(
-				'error',
-				'The Redis extension must be loaded to use Redis cache.'
-			);
+			log_message('error', 'The Redis extension must be loaded to use Redis cache.');
 
 			return FALSE;
 		}
@@ -182,7 +169,6 @@
 	 * Loads Redis config file if present. Will halt execution if a Redis connection
 	 * can't be established.
 	 *
-	 * @access private
 	 * @return void
 	 * @see Redis::connect()
 	 */