8000 feature #51250 Remove remaining experimental classes (fabpot) · symfony/symfony@74f7d6d · GitHub
[go: up one dir, main page]

Skip to content

Commit 74f7d6d

Browse files
committed
feature #51250 Remove remaining experimental classes (fabpot)
This PR was merged into the 6.4 branch. Discussion ---------- Remove remaining experimental classes | Q | A | ------------- | --- | Branch? | 6.4 | Bug fix? | no | New feature? | yes <!-- please update src/**/CHANGELOG.md files --> | Deprecations? | no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files --> | Tickets | n/a | License | MIT | Doc PR | n/a Let's remove all remaining experimental classes as we cannot have such classes in 6.4 `@vincentchalamon` Commits ------- 8e50e09 Remove remaining experimental classes
2 parents 18b9cad + 8e50e09 commit 74f7d6d

File tree

11 files changed

+0
-22
lines changed

11 files changed

+0
-22
lines changed

src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/AccessToken/OidcTokenHandlerFactory.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@
2121

2222
/**
2323
* Configures a token handler for decoding and validating an OIDC token.
24-
*
25-
* @experimental
2624
*/
2725
class OidcTokenHandlerFactory implements TokenHandlerFactoryInterface
2826
{

src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/AccessToken/OidcUserInfoTokenHandlerFactory.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020

2121
/**
2222
* Configures a token handler for an OIDC server.
23-
*
24-
* @experimental
2523
*/
2624
class OidcUserInfoTokenHandlerFactory implements TokenHandlerFactoryInterface
2725
{

src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/AccessToken/ServiceTokenHandlerFactory.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
* Configures a token handler from a service id.
2020
*
2121
* @see \Symfony\Bundle\SecurityBundle\Tests\DependencyInjection\Security\Factory\AccessTokenFactoryTest
22-
*
23-
* @experimental
2422
*/
2523
class ServiceTokenHandlerFactory implements TokenHandlerFactoryInterface
2624
{

src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/AccessToken/TokenHandlerFactoryInterface.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616

1717
/**
1818
* Allows creating configurable token handlers.
19-
*
20-
* @experimental
2119
*/
2220
interface TokenHandlerFactoryInterface
2321
{

src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/SignatureAlgorithmFactory.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020
* Creates a signature algorithm for {@see OidcTokenHandler}.
2121
*
2222
* @internal
23-
*
24-
* @experimental
2523
*/
2624
final class SignatureAlgorithmFactory
2725
{

src/Symfony/Component/Security/Core/User/AttributesBasedUserProviderInterface.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
* Overrides UserProviderInterface to add an "attributes" argument on loadUserByIdentifier.
1818
* This is particularly useful with self-contained access tokens.
1919
*
20-
* @experimental
21-
*
2220
* @template-covariant TUser of UserInterface
2321
*
2422
* @template-extends UserProviderInterface<TUser>

src/Symfony/Component/Security/Core/User/OidcUser.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* UserInterface implementation used by the access-token security workflow with an OIDC server.
16-
*
17-
* @experimental
1816
*/
1917
class OidcUser implements UserInterface
2018
{

src/Symfony/Component/Security/Http/AccessToken/Oidc/Exception/InvalidSignatureException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515

1616
/**
1717
* This exception is thrown when the token signature is invalid.
18-
*
19-
* @experimental
2018
*/
2119
class InvalidSignatureException extends AuthenticationException
2220
{

src/Symfony/Component/Security/Http/AccessToken/Oidc/Exception/MissingClaimException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515

1616
/**
1717
* This exception is thrown when the user is invalid on the OIDC server (e.g.: "email" property is not in the scope).
18-
*
19-
* @experimental
2018
*/
2119
class MissingClaimException extends AuthenticationException
2220
{

src/Symfony/Component/Security/Http/AccessToken/Oidc/OidcTokenHandler.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@
3131

3232
/**
3333
* The token handler decodes and validates the token, and retrieves the user identifier from it.
34-
*
35-
* @experimental
3634
*/
3735
final class OidcTokenHandler implements AccessTokenHandlerInterface
3836
{

src/Symfony/Component/Security/Http/AccessToken/Oidc/OidcUserInfoTokenHandler.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020

2121
/**
2222
* The token handler validates the token on the OIDC server and retrieves the user identifier.
23-
*
24-
* @experimental
2523
*/
2624
final class OidcUserInfoTokenHandler implements AccessTokenHandlerInterface
2725
{

0 commit comments

Comments
 (0)
0