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

Merge pull request #159 from sparksp/develop/redis

Refactored redis destruction
parents 5b9f6d1b 8fd522fd
......@@ -258,7 +258,10 @@ class Redis {
*/
public function __destruct()
{
fclose($this->connection);
if ($this->connection)
{
fclose($this->connection);
}
}
}
\ No newline at end of file
}
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