Browse Source

Refactor the memcache class.

Taylor Otwell 13 years ago
parent
commit
25ebe9fb97
1 changed files with 6 additions and 1 deletions
  1. 6 1
      system/memcached.php

+ 6 - 1
system/memcached.php

@@ -16,7 +16,12 @@ class Memcached {
 	 */
 	public static function instance()
 	{
-		return ( ! is_null(static::$instance)) ? static::$instance : static::$instance = static::connect(Config::get('cache.servers'));
+		if (is_null(static::$instance))
+		{
+			static::$instance = static::connect(Config::get('cache.servers'));
+		}
+
+		return static::$instance;
 	}
 
 	/**