Ver código fonte

[HttpKernel\Security]Fixed markup

Dominique Bongiraud 14 anos atrás
pai
commit
c0ef9fb0ea

+ 2 - 1
src/Symfony/Component/HttpKernel/Security/AccessMap.php

@@ -15,7 +15,8 @@ use Symfony\Component\HttpFoundation\Request;
  */
 
 /**
- * AccessMap allows configuration of different access control rules for specific parts of the website.
+ * AccessMap allows configuration of different access control rules for
+ * specific parts of the website.
  *
  * @author Fabien Potencier <fabien.potencier@symfony-project.com>
  */

+ 4 - 3
src/Symfony/Component/HttpKernel/Security/Firewall.php

@@ -17,11 +17,12 @@ use Symfony\Component\HttpFoundation\Request;
  */
 
 /**
- * Firewall uses a FirewallMap to register security listeners for the given request.
+ * Firewall uses a FirewallMap to register security listeners for the given
+ * request.
  *
  * It allows for different security strategies within the same application
- * (a Basic authentication for the /api, and a web based authentication for everything else
- * for instance).
+ * (a Basic authentication for the /api, and a web based authentication for
+ * everything else for instance).
  *
  * @author Fabien Potencier <fabien.potencier@symfony-project.com>
  */

+ 4 - 2
src/Symfony/Component/HttpKernel/Security/Firewall/AnonymousAuthenticationListener.php

@@ -19,7 +19,8 @@ use Symfony\Component\Security\Authentication\Token\AnonymousToken;
  */
 
 /**
- * AnonymousAuthenticationListener automatically addds a Token if none is already present.
+ * AnonymousAuthenticationListener automatically addds a Token if none is
+ * already present.
  *
  * @author Fabien Potencier <fabien.potencier@symfony-project.com>
  */
@@ -37,7 +38,8 @@ class AnonymousAuthenticationListener
     }
 
     /**
-     * Registers a core.security listener to load the SecurityContext from the session.
+     * Registers a core.security listener to load the SecurityContext from the
+     * session.
      *
      * @param EventDispatcher $dispatcher An EventDispatcher instance
      * @param integer         $priority   The priority

+ 2 - 1
src/Symfony/Component/HttpKernel/Security/Firewall/ChannelListener.php

@@ -18,7 +18,8 @@ use Symfony\Component\HttpFoundation\Request;
  */
 
 /**
- * ChannelListener switches the HTTP protocol based on the access control configuration.
+ * ChannelListener switches the HTTP protocol based on the access control
+ * configuration.
  *
  * @author Fabien Potencier <fabien.potencier@symfony-project.com>
  */

+ 2 - 1
src/Symfony/Component/HttpKernel/Security/Firewall/ContextListener.php

@@ -37,7 +37,8 @@ class ContextListener
     }
 
     /**
-     * Registers a core.security listener to load the SecurityContext from the session.
+     * Registers a core.security listener to load the SecurityContext from the
+     * session.
      *
      * @param EventDispatcher $dispatcher An EventDispatcher instance
      * @param integer         $priority   The priority

+ 2 - 1
src/Symfony/Component/HttpKernel/Security/Firewall/ExceptionListener.php

@@ -25,7 +25,8 @@ use Symfony\Component\Security\Authentication\EntryPoint\AuthenticationEntryPoin
  */
 
 /**
- * ExceptionListener catches authentication exception and converts them to Response instances.
+ * ExceptionListener catches authentication exception and converts them to
+ * Response instances.
  *
  * @author Fabien Potencier <fabien.potencier@symfony-project.com>
  */

+ 3 - 2
src/Symfony/Component/HttpKernel/Security/Firewall/PreAuthenticatedListener.php

@@ -21,8 +21,9 @@ use Symfony\Component\EventDispatcher\Event;
  */
 
 /**
- * PreAuthenticatedListener is the base class for all listener that authenticates users based
- * on a pre-authenticated request (like a certificate for instance).
+ * PreAuthenticatedListener is the base class for all listener that
+ * authenticates users based on a pre-authenticated request (like a certificate
+ * for instance).
  *
  * @author Fabien Potencier <fabien.potencier@symfony-project.com>
  */

+ 2 - 1
src/Symfony/Component/HttpKernel/Security/Firewall/SwitchUserListener.php

@@ -24,7 +24,8 @@ use Symfony\Component\Security\Authentication\Token\TokenInterface;
  */
 
 /**
- * SwitchUserListener allows a user to impersonate another one temporarly (like the Unix su command).
+ * SwitchUserListener allows a user to impersonate another one temporarly
+ * (like the Unix su command).
  *
  * @author Fabien Potencier <fabien.potencier@symfony-project.com>
  */

+ 2 - 2
src/Symfony/Component/HttpKernel/Security/Firewall/UsernamePasswordFormAuthenticationListener.php

@@ -19,8 +19,8 @@ use Symfony\Component\Security\Authentication\Token\UsernamePasswordToken;
  */
 
 /**
- * UsernamePasswordFormAuthenticationListener is the default implementation of an authentication via a simple form
- * composed of a username and a password.
+ * UsernamePasswordFormAuthenticationListener is the default implementation of
+ * an authentication via a simple form composed of a username and a password.
  *
  * @author Fabien Potencier <fabien.potencier@symfony-project.com>
  */

+ 2 - 1
src/Symfony/Component/HttpKernel/Security/FirewallMap.php

@@ -16,7 +16,8 @@ use Symfony\Component\HttpKernel\Security\Firewall\ExceptionListener;
  */
 
 /**
- * FirewallMap allows configuration of different firewalls for specific parts of the website.
+ * FirewallMap allows configuration of different firewalls for specific parts
+ * of the website.
  *
  * @author Fabien Potencier <fabien.potencier@symfony-project.com>
  */