Code development platform for open source projects from the European Union institutions

Commit d8697bfb authored by Pol Dellaiera's avatar Pol Dellaiera
Browse files

remove static keyword

parent 72eff5c3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@ final class EuLoginApiAuthenticationAuthenticator extends AbstractAuthenticator
        return new SelfValidatingPassport(
            new UserBadge(
                $payload['sub'],
                static fn (string $identifier): UserInterface => $this->euLoginApiAuthenticationUserProvider->loadUserByUsernameAndPayload($identifier, $payload)
                fn (string $identifier): UserInterface => $this->euLoginApiAuthenticationUserProvider->loadUserByUsernameAndPayload($identifier, $payload)
            )
        );
    }