Fix the parameter names in the SecurityFactoryInterface::create() method

This commit is contained in:
Leo Feyer 2020-08-18 10:04:43 +02:00
parent 7f7b447b0b
commit a73f5c1587

View File

@ -24,17 +24,17 @@ interface SecurityFactoryInterface
/**
* Configures the container services required to use the authentication listener.
*
* @param string $id The unique id of the firewall
* @param array $config The options array for the listener
* @param string $userProvider The service id of the user provider
* @param string|null $defaultEntryPoint
* @param string $id The unique id of the firewall
* @param array $config The options array for the listener
* @param string $userProviderId The service id of the user provider
* @param string|null $defaultEntryPointId
*
* @return array containing three values:
* - the provider id
* - the listener id
* - the entry point id
*/
public function create(ContainerBuilder $container, $id, $config, $userProvider, $defaultEntryPoint);
public function create(ContainerBuilder $container, $id, $config, $userProviderId, $defaultEntryPointId);
/**
* Defines the position at which the provider is called.