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/LogoutSuccessHandlerInterface.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/LogoutSuccessHandlerInterface.php')
-rw-r--r-- | Http/Logout/LogoutSuccessHandlerInterface.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/Logout/LogoutSuccessHandlerInterface.php b/Http/Logout/LogoutSuccessHandlerInterface.php index 5c6c2b6..ad878e6 100644 --- a/Http/Logout/LogoutSuccessHandlerInterface.php +++ b/Http/Logout/LogoutSuccessHandlerInterface.php @@ -33,5 +33,5 @@ interface LogoutSuccessHandlerInterface * * @return Response never null */ - function onLogoutSuccess(Request $request); + public function onLogoutSuccess(Request $request); } |