PSR variable rename

This commit is contained in:
Alex Bilbie 2012-09-04 12:28:06 +01:00
parent da329b6b37
commit eb5010a3f8

View File

@ -18,7 +18,7 @@ class AuthorizeToken extends Oauth2\Client\Token
/** /**
* @var string redirect_uri * @var string redirect_uri
*/ */
protected $redirect_uri; protected $redirectUri;
/** /**
* Sets the token, expiry, etc values. * Sets the token, expiry, etc values.
@ -39,7 +39,7 @@ class AuthorizeToken extends Oauth2\Client\Token
} }
$this->code = $options['code']; $this->code = $options['code'];
$this->redirect_uri = $options['redirect_uri']; $this->redirectUri = $options['redirect_uri'];
} }
/** /**