Skip to content

Commit 0c9ed6d

Browse files
author
Luca Degasperi
committed
finding a way to delete expired tokens
1 parent 11f671b commit 0c9ed6d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/LucaDegasperi/OAuth2Server/Commands/ExpiredTokensCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
use Illuminate\Console\Command;
44
use Symfony\Component\Console\Input\InputOption;
55
use Symfony\Component\Console\Input\InputArgument;
6-
use LucaDegasperi\Repositories\SessionManagementInterface;
6+
use LucaDegasperi\OAuth2Server\Repositories\SessionManagementInterface;
77

88
class ExpiredTokensCommand extends Command
99
{

src/LucaDegasperi/OAuth2Server/OAuth2ServerServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public function register()
8888

8989
});
9090

91-
$app['oauth2.expired-tokens-command'] = $app->share(function($app)
91+
$app['oauth2.expired-tokens-command'] = $app->share(function ($app)
9292
{
9393
return $app->make('LucaDegasperi\OAuth2Server\Commands\ExpiredTokensCommand');
9494
});

0 commit comments

Comments
 (0)