You are here

public function ReCaptchaTest::invalidSecretProvider in reCAPTCHA 6.2

Same name and namespace in other branches
  1. 7.2 recaptcha-php/tests/ReCaptcha/ReCaptchaTest.php \ReCaptcha\ReCaptchaTest::invalidSecretProvider()

File

recaptcha-php/tests/ReCaptcha/ReCaptchaTest.php, line 41

Class

ReCaptchaTest

Namespace

ReCaptcha

Code

public function invalidSecretProvider() {
  return array(
    array(
      '',
    ),
    array(
      null,
    ),
    array(
      0,
    ),
    array(
      new \stdClass(),
    ),
    array(
      array(),
    ),
  );
}