lithium\data\source\Http::disconnect()
Implements
lithium\data\Source::disconnect()
Disconnect from socket.
Returns
booleanSource
public function disconnect() {
if ($this->_isConnected && $this->connection !== null) {
$this->_isConnected = false;
}
return !$this->_isConnected;
}