Skip to content

Remove remaining experimental classes #51250

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@

/**
* Configures a token handler for decoding and validating an OIDC token.
*
* @experimental
*/
class OidcTokenHandlerFactory implements TokenHandlerFactoryInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@

/**
* Configures a token handler for an OIDC server.
*
* @experimental
*/
class OidcUserInfoTokenHandlerFactory implements TokenHandlerFactoryInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@
* Configures a token handler from a service id.
*
* @see \Symfony\Bundle\SecurityBundle\Tests\DependencyInjection\Security\Factory\AccessTokenFactoryTest
*
* @experimental
*/
class ServiceTokenHandlerFactory implements TokenHandlerFactoryInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
* Allows creating configurable token handlers.
*
* @experimental
*/
interface TokenHandlerFactoryInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@
* Creates a signature algorithm for {@see OidcTokenHandler}.
*
* @internal
*
* @experimental
*/
final class SignatureAlgorithmFactory
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
* Overrides UserProviderInterface to add an "attributes" argument on loadUserByIdentifier.
* This is particularly useful with self-contained access tokens.
*
* @experimental
*
* @template-covariant TUser of UserInterface
*
* @template-extends UserProviderInterface<TUser>
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/Security/Core/User/OidcUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

/**
* UserInterface implementation used by the access-token security workflow with an OIDC server.
*
* @experimental
*/
class OidcUser implements UserInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@

/**
* This exception is thrown when the token signature is invalid.
*
* @experimental
*/
class InvalidSignatureException extends AuthenticationException
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@

/**
* This exception is thrown when the user is invalid on the OIDC server (e.g.: "email" property is not in the scope).
*
* @experimental
*/
class MissingClaimException extends AuthenticationException
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@

/**
* The token handler decodes and validates the token, and retrieves the user identifier from it.
*
* @experimental
*/
final class OidcTokenHandler implements AccessTokenHandlerInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@

/**
* The token handler validates the token on the OIDC server and retrieves the user identifier.
*
* @experimental
*/
final class OidcUserInfoTokenHandler implements AccessTokenHandlerInterface
{
Expand Down