aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Security
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/CoreBundle/Security')
-rw-r--r--src/Wallabag/CoreBundle/Security/Authentication/Provider/WsseProvider.php2
-rw-r--r--src/Wallabag/CoreBundle/Security/Authentication/Token/WsseUserToken.php2
-rw-r--r--src/Wallabag/CoreBundle/Security/Firewall/WsseListener.php3
3 files changed, 3 insertions, 4 deletions
diff --git a/src/Wallabag/CoreBundle/Security/Authentication/Provider/WsseProvider.php b/src/Wallabag/CoreBundle/Security/Authentication/Provider/WsseProvider.php
index ac57e27d..5499f400 100644
--- a/src/Wallabag/CoreBundle/Security/Authentication/Provider/WsseProvider.php
+++ b/src/Wallabag/CoreBundle/Security/Authentication/Provider/WsseProvider.php
@@ -56,4 +56,4 @@ class WsseProvider implements AuthenticationProviderInterface
56 { 56 {
57 return $token instanceof WsseUserToken; 57 return $token instanceof WsseUserToken;
58 } 58 }
59} \ No newline at end of file 59}
diff --git a/src/Wallabag/CoreBundle/Security/Authentication/Token/WsseUserToken.php b/src/Wallabag/CoreBundle/Security/Authentication/Token/WsseUserToken.php
index b189e22a..ea6fb9bf 100644
--- a/src/Wallabag/CoreBundle/Security/Authentication/Token/WsseUserToken.php
+++ b/src/Wallabag/CoreBundle/Security/Authentication/Token/WsseUserToken.php
@@ -20,4 +20,4 @@ class WsseUserToken extends AbstractToken
20 { 20 {
21 return ''; 21 return '';
22 } 22 }
23} \ No newline at end of file 23}
diff --git a/src/Wallabag/CoreBundle/Security/Firewall/WsseListener.php b/src/Wallabag/CoreBundle/Security/Firewall/WsseListener.php
index b2474785..4d4f2145 100644
--- a/src/Wallabag/CoreBundle/Security/Firewall/WsseListener.php
+++ b/src/Wallabag/CoreBundle/Security/Firewall/WsseListener.php
@@ -52,7 +52,6 @@ class WsseListener implements ListenerInterface
52 $response = new Response(); 52 $response = new Response();
53 $response->setStatusCode(403); 53 $response->setStatusCode(403);
54 $event->setResponse($response); 54 $event->setResponse($response);
55
56 } 55 }
57 } 56 }
58} \ No newline at end of file 57}