summaryrefslogtreecommitdiffstats
path: root/Http/Authentication
diff options
context:
space:
mode:
Diffstat (limited to 'Http/Authentication')
-rw-r--r--Http/Authentication/AuthenticationFailureHandlerInterface.php2
-rw-r--r--Http/Authentication/AuthenticationSuccessHandlerInterface.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/Http/Authentication/AuthenticationFailureHandlerInterface.php b/Http/Authentication/AuthenticationFailureHandlerInterface.php
index 9cd7496..5bb00de 100644
--- a/Http/Authentication/AuthenticationFailureHandlerInterface.php
+++ b/Http/Authentication/AuthenticationFailureHandlerInterface.php
@@ -35,5 +35,5 @@ interface AuthenticationFailureHandlerInterface
*
* @return Response|null the response to return
*/
- function onAuthenticationFailure(Request $request, AuthenticationException $exception);
+ public function onAuthenticationFailure(Request $request, AuthenticationException $exception);
}
diff --git a/Http/Authentication/AuthenticationSuccessHandlerInterface.php b/Http/Authentication/AuthenticationSuccessHandlerInterface.php
index 8917f3e..bf03cd6 100644
--- a/Http/Authentication/AuthenticationSuccessHandlerInterface.php
+++ b/Http/Authentication/AuthenticationSuccessHandlerInterface.php
@@ -35,5 +35,5 @@ interface AuthenticationSuccessHandlerInterface
*
* @return Response|null the response to return
*/
- function onAuthenticationSuccess(Request $request, TokenInterface $token);
+ public function onAuthenticationSuccess(Request $request, TokenInterface $token);
}