remove static
This commit is contained in:
Adam Magness 2017-12-04 21:00:47 -05:00
parent 9f4be62d3d
commit 448598495c
1 changed files with 5 additions and 5 deletions

View File

@ -36,7 +36,7 @@ class FKOAuthDataStore extends OAuthDataStore
* @param string $consumer_key key * @param string $consumer_key key
* @return mixed * @return mixed
*/ */
public static function lookup_consumer($consumer_key) public function lookup_consumer($consumer_key)
{ {
logger(__function__.":".$consumer_key); logger(__function__.":".$consumer_key);
@ -56,7 +56,7 @@ class FKOAuthDataStore extends OAuthDataStore
* @param string $token token * @param string $token token
* @return mixed * @return mixed
*/ */
public static function lookup_token($consumer, $token_type, $token) public function lookup_token($consumer, $token_type, $token)
{ {
logger(__function__.":".$consumer.", ". $token_type.", ".$token); logger(__function__.":".$consumer.", ". $token_type.", ".$token);
@ -81,7 +81,7 @@ class FKOAuthDataStore extends OAuthDataStore
* @param string $timestamp timestamp * @param string $timestamp timestamp
* @return mixed * @return mixed
*/ */
public static function lookup_nonce($consumer, $token, $nonce, $timestamp) public function lookup_nonce($consumer, $token, $nonce, $timestamp)
{ {
$r = dba::select('tokens', ['id', 'secret'], ['client_id' => $consumer->key, 'id' => $nonce, 'expires' => $timestamp], ['limit' => 1]); $r = dba::select('tokens', ['id', 'secret'], ['client_id' => $consumer->key, 'id' => $nonce, 'expires' => $timestamp], ['limit' => 1]);
@ -97,7 +97,7 @@ class FKOAuthDataStore extends OAuthDataStore
* @param string $callback optional, default null * @param string $callback optional, default null
* @return mixed * @return mixed
*/ */
public static function new_request_token($consumer, $callback = null) public function new_request_token($consumer, $callback = null)
{ {
logger(__function__.":".$consumer.", ". $callback); logger(__function__.":".$consumer.", ". $callback);
$key = self::genToken(); $key = self::genToken();
@ -132,7 +132,7 @@ class FKOAuthDataStore extends OAuthDataStore
* @param string $verifier optional, defult null * @param string $verifier optional, defult null
* @return object * @return object
*/ */
public static function new_access_token($token, $consumer, $verifier = null) public function new_access_token($token, $consumer, $verifier = null)
{ {
logger(__function__.":".$token.", ". $consumer.", ". $verifier); logger(__function__.":".$token.", ". $consumer.", ". $verifier);