We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bce3f8 commit bf4597eCopy full SHA for bf4597e
src/Services/Container.php
@@ -501,7 +501,11 @@ public function __construct()
501
);
502
$this->services[AuthorizationServer::class] = $authorizationServerFactory->build();
503
504
- $bearerTokenValidator = new BearerTokenValidator($accessTokenRepository, $publicKey);
+ $bearerTokenValidator = new BearerTokenValidator(
505
+ $accessTokenRepository,
506
+ $publicKey,
507
+ $moduleConfig,
508
+ );
509
$this->services[BearerTokenValidator::class] = $bearerTokenValidator;
510
511
$resourceServerFactory = new ResourceServerFactory(
0 commit comments