From df4306dc858edaba22b75774ac5cafc4abdb2c34 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Thu, 2 Dec 2010 10:19:59 +0100 Subject: [PATCH] [FrameworkBundle] added missing phpdoc --- .../Security/Factory/FormLoginFactory.php | 14 ++++++++++++++ .../Security/Factory/HttpBasicFactory.php | 14 ++++++++++++++ .../Security/Factory/HttpDigestFactory.php | 14 ++++++++++++++ .../Security/Factory/SecurityFactoryInterface.php | 14 ++++++++++++++ .../Security/Factory/X509Factory.php | 14 ++++++++++++++ 5 files changed, 70 insertions(+) diff --git a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Security/Factory/FormLoginFactory.php b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Security/Factory/FormLoginFactory.php index 2319b4ebcc..846f6cef78 100644 --- a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Security/Factory/FormLoginFactory.php +++ b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Security/Factory/FormLoginFactory.php @@ -5,6 +5,20 @@ namespace Symfony\Bundle\FrameworkBundle\DependencyInjection\Security\Factory; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\Reference; +/* + * This file is part of the Symfony framework. + * + * (c) Fabien Potencier + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +/** + * FormLoginFactory creates services for form login authentication. + * + * @author Fabien Potencier + */ class FormLoginFactory implements SecurityFactoryInterface { public function create(ContainerBuilder $container, $id, $config, $userProvider, $providerIds, $defaultEntryPoint) diff --git a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Security/Factory/HttpBasicFactory.php b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Security/Factory/HttpBasicFactory.php index fafedfbfbc..e5a3ba8a3a 100644 --- a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Security/Factory/HttpBasicFactory.php +++ b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Security/Factory/HttpBasicFactory.php @@ -5,6 +5,20 @@ namespace Symfony\Bundle\FrameworkBundle\DependencyInjection\Security\Factory; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\Reference; +/* + * This file is part of the Symfony framework. + * + * (c) Fabien Potencier + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +/** + * HttpBasicFactory creates services for HTTP basic authentication. + * + * @author Fabien Potencier + */ class HttpBasicFactory implements SecurityFactoryInterface { public function create(ContainerBuilder $container, $id, $config, $userProvider, $providerIds, $defaultEntryPoint) diff --git a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Security/Factory/HttpDigestFactory.php b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Security/Factory/HttpDigestFactory.php index 2cfbeeafee..03b0e53f30 100644 --- a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Security/Factory/HttpDigestFactory.php +++ b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Security/Factory/HttpDigestFactory.php @@ -5,6 +5,20 @@ namespace Symfony\Bundle\FrameworkBundle\DependencyInjection\Security\Factory; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\Reference; +/* + * This file is part of the Symfony framework. + * + * (c) Fabien Potencier + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +/** + * HttpDigestFactory creates services for HTTP digest authentication. + * + * @author Fabien Potencier + */ class HttpDigestFactory implements SecurityFactoryInterface { public function create(ContainerBuilder $container, $id, $config, $userProvider, $providerIds, $defaultEntryPoint) diff --git a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Security/Factory/SecurityFactoryInterface.php b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Security/Factory/SecurityFactoryInterface.php index 8899b01b8d..0d539f146c 100644 --- a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Security/Factory/SecurityFactoryInterface.php +++ b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Security/Factory/SecurityFactoryInterface.php @@ -4,6 +4,20 @@ namespace Symfony\Bundle\FrameworkBundle\DependencyInjection\Security\Factory; use Symfony\Component\DependencyInjection\ContainerBuilder; +/* + * This file is part of the Symfony framework. + * + * (c) Fabien Potencier + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +/** + * SecurityFactoryInterface is the interface for all security authentication listener. + * + * @author Fabien Potencier + */ interface SecurityFactoryInterface { public function create(ContainerBuilder $container, $id, $config, $userProvider, $providerIds, $defaultEntryPoint); diff --git a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Security/Factory/X509Factory.php b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Security/Factory/X509Factory.php index cb80dc9e30..17975f101e 100644 --- a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Security/Factory/X509Factory.php +++ b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Security/Factory/X509Factory.php @@ -5,6 +5,20 @@ namespace Symfony\Bundle\FrameworkBundle\DependencyInjection\Security\Factory; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\Reference; +/* + * This file is part of the Symfony framework. + * + * (c) Fabien Potencier + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +/** + * X509Factory creates services for X509 certificate authentication. + * + * @author Fabien Potencier + */ class X509Factory implements SecurityFactoryInterface { public function create(ContainerBuilder $container, $id, $config, $userProvider, $providerIds, $defaultEntryPoint)