Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in sitevrerify #297

Merged
merged 1 commit into from May 24, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ReCaptcha/ReCaptcha.php
Expand Up @@ -38,7 +38,7 @@ class ReCaptcha
const VERSION = 'php_1.2.1';

/**
* URL for reCAPTCHA sitevrerify API
* URL for reCAPTCHA siteverify API
* @const string
*/
const SITE_VERIFY_URL = 'https://www.google.com/recaptcha/api/siteverify';
Expand Down
4 changes: 2 additions & 2 deletions src/ReCaptcha/RequestMethod/CurlPost.php
Expand Up @@ -44,7 +44,7 @@ class CurlPost implements RequestMethod
private $curl;

/**
* URL for reCAPTCHA sitevrerify API
* URL for reCAPTCHA siteverify API
* @var string
*/
private $siteVerifyUrl;
Expand All @@ -53,7 +53,7 @@ class CurlPost implements RequestMethod
* Only needed if you want to override the defaults
*
* @param Curl $curl Curl resource
* @param string $siteVerifyUrl URL for reCAPTCHA sitevrerify API
* @param string $siteVerifyUrl URL for reCAPTCHA siteverify API
*/
public function __construct(Curl $curl = null, $siteVerifyUrl = null)
{
Expand Down
4 changes: 2 additions & 2 deletions src/ReCaptcha/RequestMethod/Post.php
Expand Up @@ -36,15 +36,15 @@
class Post implements RequestMethod
{
/**
* URL for reCAPTCHA sitevrerify API
* URL for reCAPTCHA siteverify API
* @var string
*/
private $siteVerifyUrl;

/**
* Only needed if you want to override the defaults
*
* @param string $siteVerifyUrl URL for reCAPTCHA sitevrerify API
* @param string $siteVerifyUrl URL for reCAPTCHA siteverify API
*/
public function __construct($siteVerifyUrl = null)
{
Expand Down
2 changes: 1 addition & 1 deletion src/ReCaptcha/RequestMethod/SocketPost.php
Expand Up @@ -47,7 +47,7 @@ class SocketPost implements RequestMethod
* Only needed if you want to override the defaults
*
* @param \ReCaptcha\RequestMethod\Socket $socket optional socket, injectable for testing
* @param string $siteVerifyUrl URL for reCAPTCHA sitevrerify API
* @param string $siteVerifyUrl URL for reCAPTCHA siteverify API
*/
public function __construct(Socket $socket = null, $siteVerifyUrl = null)
{
Expand Down