Skip to content

Commit

Permalink
Merge pull request #7 from designmynight/facade-docs
Browse files Browse the repository at this point in the history
doc: add method docs for ide autocomplete
  • Loading branch information
jmosul authored Aug 22, 2018
2 parents 99403ba + 300207e commit 1b04342
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/Facades/Introspect.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@
use DesignMyNight\Laravel\OAuth2\Introspect as IntrospectService;
use Illuminate\Support\Facades\Facade;

/**
* Class Introspect
*
* @package DesignMyNight\Laravel\OAuth2\Facades
*
* @method static void mustHaveScopes(array $requiredScopes = [])
* @method static \DesignMyNight\Laravel\OAuth2\Intropect setUserDataKey(string $key)
* @method static \DesignMyNight\Laravel\OAuth2\Intropect setUserModelClass(string $class)
* @method static bool tokenIsActive()
* @method static bool tokenIsNotActive()
* @method static mixed|null getUser()
* @method static \Illuminate\Contracts\Auth\Authenticatable getUserModel()
* @method static string getUserModelClass()
* @method static \DesignMyNight\Laravel\OAuth2\Intropect verifyToken()
*/
class Introspect extends Facade
{
protected static function getFacadeAccessor()
Expand Down

0 comments on commit 1b04342

Please sign in to comment.