Implements the magic __sleep function to disconnect from the database.
public function __sleep() { $keys = get_object_vars($this); unset($keys['connection']); return array_keys($keys); }