diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2012-07-09 14:38:28 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2012-07-09 14:43:50 +0200 |
commit | c900a0c34f7da7107e68c558e4bddd1676e7da43 (patch) | |
tree | 7b4e8d411940ce4d6aedc525ad110590d70db652 /Http/Logout/LogoutHandlerInterface.php | |
parent | 1d26f9286503935f3d4670d2087c1194063687be (diff) | |
download | symfony-security-c900a0c34f7da7107e68c558e4bddd1676e7da43.zip symfony-security-c900a0c34f7da7107e68c558e4bddd1676e7da43.tar.gz symfony-security-c900a0c34f7da7107e68c558e4bddd1676e7da43.tar.bz2 |
fixed CS (mainly method signatures)v2.0.16
Diffstat (limited to 'Http/Logout/LogoutHandlerInterface.php')
-rw-r--r-- | Http/Logout/LogoutHandlerInterface.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/Logout/LogoutHandlerInterface.php b/Http/Logout/LogoutHandlerInterface.php index 079cc00..6780e4d 100644 --- a/Http/Logout/LogoutHandlerInterface.php +++ b/Http/Logout/LogoutHandlerInterface.php @@ -33,5 +33,5 @@ interface LogoutHandlerInterface * * @return void */ - function logout(Request $request, Response $response, TokenInterface $token); + public function logout(Request $request, Response $response, TokenInterface $token); } |