Browse Source

Merge pull request #159 from sparksp/develop/redis

Refactored redis destruction
Taylor Otwell 13 years ago
parent
commit
570b431c05
1 changed files with 5 additions and 2 deletions
  1. 5 2
      laravel/redis.php

+ 5 - 2
laravel/redis.php

@@ -258,7 +258,10 @@ class Redis {
 	 */
 	public function __destruct()
 	{
-		fclose($this->connection);
+		if ($this->connection)
+		{
+			fclose($this->connection);
+		}
 	}
 
-}
+}