Add phpdoc for SecurityFactoryInterface::getPosition

This commit is contained in:
Adrien Brault 2015-02-17 15:33:38 -08:00 committed by Fabien Potencier
parent 5843745258
commit bcb2e09dc1
1 changed files with 6 additions and 0 deletions

View File

@ -23,6 +23,12 @@ interface SecurityFactoryInterface
{
public function create(ContainerBuilder $container, $id, $config, $userProvider, $defaultEntryPoint);
/**
* Defines the position at which the provider is called.
* Possible values: pre_auth, form, http, and remember_me.
*
* @return string
*/
public function getPosition();
public function getKey();