From 4ff072a0a80a59e1fe61ebed5ba0dd41142deaae Mon Sep 17 00:00:00 2001 From: Cyril VERLOOP Date: Fri, 8 Nov 2019 16:14:08 +0100 Subject: [PATCH] replace deprecated controller reference in routes --- Resources/config/routing.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/config/routing.yml b/Resources/config/routing.yml index f2fd26d..13ad6fe 100644 --- a/Resources/config/routing.yml +++ b/Resources/config/routing.yml @@ -1,9 +1,9 @@ captcha_handler: path: /captcha-handler - defaults: { _controller: CaptchaBundle:CaptchaHandler:index } + defaults: { _controller: Captcha\Bundle\CaptchaBundle\Controller\CaptchaHandlerController::indexAction } methods: [GET] simple_captcha_handler: path: /simple-captcha-handler - defaults: { _controller: CaptchaBundle:SimpleCaptchaHandler:index } + defaults: { _controller: Captcha\Bundle\CaptchaBundle\Controller\SimpleCaptchaHandlerController::indexAction } methods: [GET] \ No newline at end of file