diff --git a/src/Facades/Introspect.php b/src/Facades/Introspect.php index 4d5d59f..a2d5e97 100644 --- a/src/Facades/Introspect.php +++ b/src/Facades/Introspect.php @@ -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()