lithium\net\socket\Context::eof()
Implements
lithium\net\Socket::eof()
End of file test for this socket connection. Does not apply to this implementation.
Returns
booleanSuccess.
Source
public function eof() {
if (!is_resource($this->_resource)) {
return true;
}
return feof($this->_resource);
}