From f1467e7faef3ed965c0e0167b1d2a6818961fe98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Andr=C3=A9?= Date: Sat, 22 Oct 2022 00:49:02 +0200 Subject: [PATCH] Fix the Security\Helper namespace --- form/dynamic_form_modification.rst | 4 ++-- security.rst | 28 ++++++++++++++-------------- security/impersonating_user.rst | 4 ++-- security/voters.rst | 2 +- session/proxy_examples.rst | 2 +- 5 files changed, 20 insertions(+), 20 deletions(-) diff --git a/form/dynamic_form_modification.rst b/form/dynamic_form_modification.rst index bf37ae429ef..7f51249b731 100644 --- a/form/dynamic_form_modification.rst +++ b/form/dynamic_form_modification.rst @@ -233,7 +233,7 @@ The problem is now to get the current user and create a choice field that contains only this user's friends. This can be done by injecting the ``Security`` service into the form type so you can get the current user object:: - use Symfony\Bundle\SecurityBundle\Security\Security; + use Symfony\Bundle\SecurityBundle\Security; // ... class FriendMessageFormType extends AbstractType @@ -260,7 +260,7 @@ security helper to fill in the listener logic:: use App\Entity\User; use Doctrine\ORM\EntityRepository; use Symfony\Bridge\Doctrine\Form\Type\EntityType; - use Symfony\Bundle\SecurityBundle\Security\Security; + use Symfony\Bundle\SecurityBundle\Security; use Symfony\Component\Form\Extension\Core\Type\TextareaType; use Symfony\Component\Form\Extension\Core\Type\TextType; // ... diff --git a/security.rst b/security.rst index 8bf921f419a..63b74c14508 100644 --- a/security.rst +++ b/security.rst @@ -598,12 +598,12 @@ Fetching the Firewall Configuration for a Request ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ If you need to get the configuration of the firewall that matched a given request, -use the :class:`Symfony\\Bundle\\SecurityBundle\\Security\\Security` service:: +use the :class:`Symfony\\Bundle\\SecurityBundle\\Security` service:: // src/Service/ExampleService.php // ... - use Symfony\Bundle\SecurityBundle\Security\Security; + use Symfony\Bundle\SecurityBundle\Security; use Symfony\Component\HttpFoundation\RequestStack; class ExampleService @@ -1609,23 +1609,23 @@ Login Programmatically .. versionadded:: 6.2 - The :class:`Symfony\Bundle\SecurityBundle\Security\Security ` + The :class:`Symfony\Bundle\SecurityBundle\Security ` class was introduced in Symfony 6.2. Prior to 6.2, it was called ``Symfony\Component\Security\Core\Security``. .. versionadded:: 6.2 - The :method:`Symfony\\Bundle\\SecurityBundle\\Security\\Security::login` + The :method:`Symfony\\Bundle\\SecurityBundle\\Security::login` method was introduced in Symfony 6.2. You can log in a user programmatically using the `login()` method of the -:class:`Symfony\\Bundle\\SecurityBundle\\Security\\Security` helper:: +:class:`Symfony\\Bundle\\SecurityBundle\\Security` helper:: // src/Controller/SecurityController.php namespace App\Controller\SecurityController; use App\Security\Authenticator\ExampleAuthenticator; - use Symfony\Bundle\SecurityBundle\Security\Security; + use Symfony\Bundle\SecurityBundle\Security; class SecurityController { @@ -1779,22 +1779,22 @@ Logout programmatically .. versionadded:: 6.2 - The :class:`Symfony\Bundle\SecurityBundle\Security\Security ` + The :class:`Symfony\Bundle\SecurityBundle\Security ` class was introduced in Symfony 6.2. Prior to 6.2, it was called ``Symfony\Component\Security\Core\Security``. .. versionadded:: 6.2 - The :method:`Symfony\\Bundle\\SecurityBundle\\Security\\Security::logout` + The :method:`Symfony\\Bundle\\SecurityBundle\\Security::logout` method was introduced in Symfony 6.2. You can logout user programmatically using the ``logout()`` method of the -:class:`Symfony\\Bundle\\SecurityBundle\\Security\\Security` helper:: +:class:`Symfony\\Bundle\\SecurityBundle\\Security` helper:: // src/Controller/SecurityController.php namespace App\Controller\SecurityController; - use Symfony\Bundle\SecurityBundle\Security\Security; + use Symfony\Bundle\SecurityBundle\Security; class SecurityController { @@ -1896,12 +1896,12 @@ Fetching the User from a Service ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ If you need to get the logged in user from a service, use the -:class:`Symfony\\Bundle\\SecurityBundle\\Security\\Security` service:: +:class:`Symfony\\Bundle\\SecurityBundle\\Security` service:: // src/Service/ExampleService.php // ... - use Symfony\Bundle\SecurityBundle\Security\Security; + use Symfony\Bundle\SecurityBundle\Security; class ExampleService { @@ -1925,7 +1925,7 @@ If you need to get the logged in user from a service, use the .. versionadded:: 6.2 - The :class:`Symfony\\Bundle\\SecurityBundle\\Security\\Security` class + The :class:`Symfony\\Bundle\\SecurityBundle\\Security` class was introduced in Symfony 6.2. In previous Symfony versions this class was defined in ``Symfony\Component\Security\Core\Security``. @@ -2333,7 +2333,7 @@ want to include extra details only for users that have a ``ROLE_SALES_ADMIN`` ro // ... use Symfony\Component\Security\Core\Exception\AccessDeniedException; - + use Symfony\Bundle\SecurityBundle\Security\Security; + + use Symfony\Bundle\SecurityBundle\Security; class SalesReportManager { diff --git a/security/impersonating_user.rst b/security/impersonating_user.rst index b51a96d6fec..9926e1ef3b0 100644 --- a/security/impersonating_user.rst +++ b/security/impersonating_user.rst @@ -160,7 +160,7 @@ the impersonator user:: // src/Service/SomeService.php namespace App\Service; - use Symfony\Bundle\SecurityBundle\Security\Security; + use Symfony\Bundle\SecurityBundle\Security; use Symfony\Component\Security\Core\Authentication\Token\SwitchUserToken; // ... @@ -367,7 +367,7 @@ logic you want:: // src/Security/Voter/SwitchToCustomerVoter.php namespace App\Security\Voter; - use Symfony\Bundle\SecurityBundle\Security\Security; + use Symfony\Bundle\SecurityBundle\Security; use Symfony\Component\Security\Core\Authentication\Token\TokenInterface; use Symfony\Component\Security\Core\Authorization\Voter\Voter; use Symfony\Component\Security\Core\User\UserInterface; diff --git a/security/voters.rst b/security/voters.rst index 320b44af37e..0755e17f39d 100644 --- a/security/voters.rst +++ b/security/voters.rst @@ -222,7 +222,7 @@ with ``ROLE_SUPER_ADMIN``:: // src/Security/PostVoter.php // ... - use Symfony\Bundle\SecurityBundle\Security\Security; + use Symfony\Bundle\SecurityBundle\Security; class PostVoter extends Voter { diff --git a/session/proxy_examples.rst b/session/proxy_examples.rst index a9114216ea8..7772c68fcf5 100644 --- a/session/proxy_examples.rst +++ b/session/proxy_examples.rst @@ -110,7 +110,7 @@ can intercept the session before it is written:: namespace App\Session; use App\Entity\User; - use Symfony\Bundle\SecurityBundle\Security\Security; + use Symfony\Bundle\SecurityBundle\Security; use Symfony\Component\HttpFoundation\Session\Storage\Proxy\SessionHandlerProxy; class ReadOnlySessionProxy extends SessionHandlerProxy pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy