From 9cdd4ad3cf92b9850152a0a1932307c0276adcfd Mon Sep 17 00:00:00 2001 From: Oskar Stark Date: Fri, 19 Oct 2018 08:57:00 +0200 Subject: [PATCH] fixed use statement --- security.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/security.rst b/security.rst index 732b4819981..43e4cf734be 100644 --- a/security.rst +++ b/security.rst @@ -701,7 +701,7 @@ If you need to get the logged in user from a service, use the // src/Service/ExampleService.php // ... - use Symfony\\Component\\Security\\Core\\Security; + use Symfony\Component\Security\Core\Security; class ExampleService {