Skip to content
This repository has been archived by the owner on Jul 15, 2019. It is now read-only.

Commit

Permalink
yos-social-php: fixed phpdoc for @return
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinwhittle committed Jul 17, 2009
1 parent 4423f25 commit 8294eb2
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions lib/Yahoo.inc
Original file line number Diff line number Diff line change
Expand Up @@ -1481,7 +1481,6 @@ class NativeSessionStore {
*
* @param $token A PHP stdclass object containing the components of
* the OAuth request token.
* @return True on success, false otherwise.
*/
function storeRequestToken($token) {
$_SESSION['yosdk_rt'] = json_encode($token);
Expand All @@ -1499,7 +1498,6 @@ class NativeSessionStore {
/**
* Clears the request token from the session store.
*
* @return True on success, false otherwise.
*/
function clearRequestToken() {
unset($_SESSION['yosdk_rt']);
Expand All @@ -1510,7 +1508,6 @@ class NativeSessionStore {
*
* @param $token A PHP stdclass object containing the components of
* the OAuth access token.
* @return True on success, false otherwise.
*/
function storeAccessToken($token) {
$_SESSION['yosdk_at'] = json_encode($token);
Expand All @@ -1528,7 +1525,6 @@ class NativeSessionStore {
/**
* Clears the access token from the session store.
*
* @return True on success, false otherwise.
*/
function clearAccessToken() {
unset($_SESSION['yosdk_at']);
Expand Down

0 comments on commit 8294eb2

Please sign in to comment.