Fix PHPDoc comments project-wide

This commit is contained in:
Hypolite Petovan 2019-01-06 16:06:53 -05:00
parent 6077aa5847
commit 3282ce5389
113 changed files with 1703 additions and 795 deletions

View file

@ -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)
{