Skip to content

Commit 81ae65a

Browse files
committed
refactor: removed unused variable
1 parent 6ca3a51 commit 81ae65a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/VerifyAccessToken.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,7 @@ public function setClient(Client $client): self
3333

3434
protected function getIntrospect($accessToken)
3535
{
36-
$guzzle = $this->getClient();
37-
38-
$response = $guzzle->post(config('authorizationserver.introspect_url'), [
36+
$response = $this->getClient()->post(config('authorizationserver.introspect_url'), [
3937
'form_params' => [
4038
'token_type_hint' => 'access_token',
4139
'token' => $accessToken,

0 commit comments

Comments
 (0)