From d9fca824f9b0785d89667e0e30253001c9354d63 Mon Sep 17 00:00:00 2001 From: Ondrej Exner Date: Wed, 22 May 2019 09:57:24 +0200 Subject: [PATCH] fix phpdoc --- Authorization/AccessDeniedHandlerInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Authorization/AccessDeniedHandlerInterface.php b/Authorization/AccessDeniedHandlerInterface.php index aea90118..871c877f 100644 --- a/Authorization/AccessDeniedHandlerInterface.php +++ b/Authorization/AccessDeniedHandlerInterface.php @@ -26,7 +26,7 @@ interface AccessDeniedHandlerInterface /** * Handles an access denied failure. * - * @return Response may return null + * @return Response|null */ public function handle(Request $request, AccessDeniedException $accessDeniedException); }