Skip to content

Commit bec2d33

Browse files
committed
Remove trailing comma
1 parent 426040e commit bec2d33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/AuthorizationValidators/BearerTokenValidator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ private function initJwtConfiguration()
7979
: new ValidAt(new SystemClock(new DateTimeZone(\date_default_timezone_get()))),
8080
new SignedWith(
8181
new Sha256(),
82-
InMemory::plainText($this->publicKey->getKeyContents(), $this->publicKey->getPassPhrase() ?? ''),
82+
InMemory::plainText($this->publicKey->getKeyContents(), $this->publicKey->getPassPhrase() ?? '')
8383
)
8484
);
8585
}

0 commit comments

Comments
 (0)