Skip to content

Try to fix build #21050

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

Closed
wants to merge 3 commits into from
Closed
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
4 changes: 2 additions & 2 deletions security/custom_authenticator.rst
Original file line number Diff line number Diff line change
Expand Up @@ -314,15 +314,15 @@

For instance, the example below uses a normalizer that converts usernames to
a normalized, ASCII-only, lowercase format suitable for consistent comparison
and storage::

Check failure on line 317 in security/custom_authenticator.rst

View workflow job for this annotation

GitHub Actions / Lint (DOCtor-RST)

Please reorder the use statements alphabetically

// src/Security/NormalizedUserBadge.php
namespace App\Security;

use Symfony\Component\Security\Http\Authenticator\Passport\Badge\UserBadge;
use Symfony\Component\Security\Http\Authenticator\Passport\Badge\FooBadge;

Check failure on line 322 in security/custom_authenticator.rst

View workflow job for this annotation

GitHub Actions / Code Blocks

[Missing class] Class, interface or trait with name "Symfony\Component\Security\Http\Authenticator\Passport\Badge\FooBadge" does not exist
use function Symfony\Component\String\u;

final class NormalizedUserBadge extends UserBadge
final class NormalizedUserBadge extends FooBadge
{
public function __construct(string $identifier)
{
Expand Down
Loading