From fe815b4579ab205a12e7c712d0097089e62ff66e Mon Sep 17 00:00:00 2001 From: fmata Date: Thu, 23 Nov 2023 12:39:44 +0100 Subject: [PATCH] [FrameworkBundle] Update docblock AbstractController --- Controller/AbstractController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Controller/AbstractController.php b/Controller/AbstractController.php index 85220f1b5..d4b9f4181 100644 --- a/Controller/AbstractController.php +++ b/Controller/AbstractController.php @@ -145,7 +145,7 @@ protected function generateUrl(string $route, array $parameters = [], int $refer /** * Forwards the request to another controller. * - * @param string $controller The controller name (a string like Bundle\BlogBundle\Controller\PostController::indexAction) + * @param string $controller The controller name (a string like "App\Controller\PostController::index" or "App\Controller\PostController" if it is invokable) */ protected function forward(string $controller, array $path = [], array $query = []): Response {