From 973c5ec99537de23b1de063114300f9ac6ff657b Mon Sep 17 00:00:00 2001 From: Philipp Wahala Date: Sun, 18 Mar 2018 18:57:30 +0100 Subject: [PATCH] [FrameworkBundle] Use `a::b` notation in ControllerTrait docblock --- .../Bundle/FrameworkBundle/Controller/ControllerTrait.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php b/src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php index ee7e603794..8b639dc54d 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php +++ b/src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php @@ -76,7 +76,7 @@ trait ControllerTrait /** * Forwards the request to another controller. * - * @param string $controller The controller name (a string like BlogBundle:Post:index) + * @param string $controller The controller name (a string like Bundle\BlogBundle\Controller\PostController::indexAction) * * @final */