Skip to content

Commit

Permalink
Merge pull request #297 from fbonzon/fix-typo-siteverify
Browse files Browse the repository at this point in the history
Fix typo in sitevrerify
  • Loading branch information
rowan-m committed May 24, 2019
2 parents 01017fc + 07db7c5 commit 116b65f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
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

0 comments on commit 116b65f

Please sign in to comment.