Skip to content

Commit b1329b4

Browse files
committed
Improve security factory signatures
1 parent 33c79ce commit b1329b4

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

DependencyInjection/Security/Factory/AuthenticatorFactoryInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ public function addConfiguration(NodeDefinition $builder);
3838
/**
3939
* Creates the authenticator service(s) for the provided configuration.
4040
*
41+
* @param array<string, mixed> $config
42+
*
4143
* @return string|string[] The authenticator service ID(s) to be used by the firewall
4244
*/
4345
public function createAuthenticator(ContainerBuilder $container, string $firewallName, array $config, string $userProviderId): string|array;

DependencyInjection/Security/Factory/FirewallListenerFactoryInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ interface FirewallListenerFactoryInterface
2323
/**
2424
* Creates the firewall listener services for the provided configuration.
2525
*
26+
* @param array<string, mixed> $config
27+
*
2628
* @return string[] The listener service IDs to be used by the firewall
2729
*/
2830
public function createListeners(ContainerBuilder $container, string $firewallName, array $config): array;

0 commit comments

Comments
 (0)