Skip to content

Commit bf4597e

Browse files
committed
WIP
1 parent 9bce3f8 commit bf4597e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/Services/Container.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,11 @@ public function __construct()
501501
);
502502
$this->services[AuthorizationServer::class] = $authorizationServerFactory->build();
503503

504-
$bearerTokenValidator = new BearerTokenValidator($accessTokenRepository, $publicKey);
504+
$bearerTokenValidator = new BearerTokenValidator(
505+
$accessTokenRepository,
506+
$publicKey,
507+
$moduleConfig,
508+
);
505509
$this->services[BearerTokenValidator::class] = $bearerTokenValidator;
506510

507511
$resourceServerFactory = new ResourceServerFactory(

0 commit comments

Comments
 (0)