Skip to content

Commit

Permalink
Fix the parameter names in the SecurityFactoryInterface::create() method
Browse files Browse the repository at this point in the history
  • Loading branch information
leofeyer committed Aug 18, 2020
1 parent ee61f2e commit ad02627
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit ad02627

Please sign in to comment.