Commit 570b431c authored by Taylor Otwell's avatar Taylor Otwell

Merge pull request #159 from sparksp/develop/redis

Refactored redis destruction
parents 5b9f6d1b 8fd522fd
...@@ -257,8 +257,11 @@ class Redis { ...@@ -257,8 +257,11 @@ class Redis {
* @return void * @return void
*/ */
public function __destruct() public function __destruct()
{
if ($this->connection)
{ {
fclose($this->connection); fclose($this->connection);
} }
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment