mirror of
https://github.com/friendica/friendica
synced 2025-05-06 15:44:11 +02:00
Fix PHPDoc comments project-wide
This commit is contained in:
parent
6077aa5847
commit
3282ce5389
113 changed files with 1703 additions and 795 deletions
|
@ -35,6 +35,7 @@ class FKOAuthDataStore extends OAuthDataStore
|
|||
/**
|
||||
* @param string $consumer_key key
|
||||
* @return mixed
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function lookup_consumer($consumer_key)
|
||||
{
|
||||
|
@ -55,6 +56,7 @@ class FKOAuthDataStore extends OAuthDataStore
|
|||
* @param string $token_type type
|
||||
* @param string $token token
|
||||
* @return mixed
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function lookup_token($consumer, $token_type, $token)
|
||||
{
|
||||
|
@ -80,6 +82,7 @@ class FKOAuthDataStore extends OAuthDataStore
|
|||
* @param string $nonce nonce
|
||||
* @param string $timestamp timestamp
|
||||
* @return mixed
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function lookup_nonce($consumer, $token, $nonce, $timestamp)
|
||||
{
|
||||
|
@ -95,6 +98,7 @@ class FKOAuthDataStore extends OAuthDataStore
|
|||
* @param string $consumer consumer
|
||||
* @param string $callback optional, default null
|
||||
* @return mixed
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function new_request_token($consumer, $callback = null)
|
||||
{
|
||||
|
@ -130,6 +134,7 @@ class FKOAuthDataStore extends OAuthDataStore
|
|||
* @param string $consumer consumer
|
||||
* @param string $verifier optional, defult null
|
||||
* @return object
|
||||
* @throws HTTPException\InternalServerErrorException
|
||||
*/
|
||||
public function new_access_token($token, $consumer, $verifier = null)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue