You are here

public function Socket::feof in reCAPTCHA 8.2

Same name and namespace in other branches
  1. 6.2 recaptcha-php/src/ReCaptcha/RequestMethod/Socket.php \ReCaptcha\RequestMethod\Socket::feof()
  2. 7.2 recaptcha-php/src/ReCaptcha/RequestMethod/Socket.php \ReCaptcha\RequestMethod\Socket::feof()

feof

Return value

bool

See also

http://php.net/feof

File

recaptcha-php/src/ReCaptcha/RequestMethod/Socket.php, line 89

Class

Socket
Convenience wrapper around native socket and file functions to allow for mocking.

Namespace

ReCaptcha\RequestMethod

Code

public function feof() {
  return feof($this->handle);
}