Skip to content

Commit

Permalink
fix: types for di container for access token loader changed to array
Browse files Browse the repository at this point in the history
  • Loading branch information
Julius Böllmann committed Dec 7, 2023
1 parent 3df8317 commit 696f600
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Resources/config/web_token_verification.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
<argument type="service" id="Jose\Bundle\JoseFramework\Services\JWSLoaderFactory" />
<argument type="service" id="Jose\Bundle\JoseFramework\Services\JWELoaderFactory" on-invalid="null" />
<argument type="service" id="Jose\Bundle\JoseFramework\Services\ClaimCheckerManagerFactory" />
<argument /> <!-- Claim checkers -->
<argument /> <!-- JWS header checkers -->
<argument /> <!-- Mandatory claims -->
<argument /> <!-- Allowed signature algorithms -->
<argument type="collection" /> <!-- Claim checkers -->
<argument type="collection"/> <!-- JWS header checkers -->
<argument type="collection"/> <!-- Mandatory claims -->
<argument type="collection" /> <!-- Allowed signature algorithms -->
<argument /> <!-- Signature keyset -->
<argument on-invalid="null" /> <!-- Continue on decryption failure -->
<argument on-invalid="null" /> <!-- JWE header checkers -->
<argument on-invalid="null" /> <!-- Allowed key encryption algorithms -->
<argument on-invalid="null" /> <!-- Allowed content encryption algorithms -->
<argument type="collection" on-invalid="null" /> <!-- JWE header checkers -->
<argument type="collection" on-invalid="null" /> <!-- Allowed key encryption algorithms -->
<argument type="collection" on-invalid="null" /> <!-- Allowed content encryption algorithms -->
<argument on-invalid="null" /> <!-- Encryption keyset -->
</service>
<service id="lexik_jwt_authentication.web_token.iat_validator" class="Jose\Component\Checker\IssuedAtChecker" public="false">
Expand Down

0 comments on commit 696f600

Please sign in to comment.