diff --git a/src/Passport.php b/src/Passport.php index b6a335d4d..a7f08282f 100644 --- a/src/Passport.php +++ b/src/Passport.php @@ -19,20 +19,6 @@ class Passport */ public static $implicitGrantEnabled = false; - /** - * Indicates if Passport should revoke existing tokens when issuing a new one. - * - * @var bool - */ - public static $revokeOtherTokens = false; - - /** - * Indicates if Passport should prune revoked tokens. - * - * @var bool - */ - public static $pruneRevokedTokens = false; - /** * The personal access token client ID. * @@ -203,30 +189,6 @@ public static function routes($callback = null, array $options = []) }); } - /** - * Instruct Passport to revoke other tokens when a new one is issued. - * - * @deprecated since 1.0. Listen to Passport events on token creation instead. - * - * @return static - */ - public static function revokeOtherTokens() - { - return new static; - } - - /** - * Instruct Passport to keep revoked tokens pruned. - * - * @deprecated since 1.0. Listen to Passport events on token creation instead. - * - * @return static - */ - public static function pruneRevokedTokens() - { - return new static; - } - /** * Set the client ID that should be used to issue personal access tokens. *