Skip to content

Commit

Permalink
StyleCI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sephster committed Oct 1, 2020
1 parent 6710412 commit 0302141
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Grant/AbstractGrant.php
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ protected function issueAccessToken(
$accessToken->setExpiryDateTime((new DateTimeImmutable())->add($accessTokenTTL));
$accessToken->setPrivateKey($this->privateKey);

if (method_exists($accessToken, 'addClaim')) {
if (\method_exists($accessToken, 'addClaim')) {
foreach ($claims as $claim) {
$accessToken->addClaim($claim);
}
Expand Down

0 comments on commit 0302141

Please sign in to comment.