You are here

public function Response::isSuccess in reCAPTCHA 8.2

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

Is success?

Return value

boolean

1 call to Response::isSuccess()
Response::toArray in recaptcha-php/src/ReCaptcha/Response.php

File

recaptcha-php/src/ReCaptcha/Response.php, line 134

Class

Response
The response returned from the service.

Namespace

ReCaptcha

Code

public function isSuccess() {
  return $this->success;
}