From c4ee2c45fa4e3823cddcd42127289b371ba62f14 Mon Sep 17 00:00:00 2001 From: Marc Ducobu Date: Fri, 7 Nov 2014 17:45:17 +0100 Subject: [PATCH] debug --- Resources/config/routing/report.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/config/routing/report.yml b/Resources/config/routing/report.yml index 7f600f680..bb21c22c0 100644 --- a/Resources/config/routing/report.yml +++ b/Resources/config/routing/report.yml @@ -1,30 +1,30 @@ report: path: / - defaults: { _controller: "ChillReportBundle:report:index" } + defaults: { _controller: "ChillReportBundle:Report:index" } report_show: path: /{id}/show - defaults: { _controller: "ChillReportBundle:report:show" } + defaults: { _controller: "ChillReportBundle:Report:show" } report_new: path: /new - defaults: { _controller: "ChillReportBundle:report:new" } + defaults: { _controller: "ChillReportBundle:Report:new" } report_create: path: /create - defaults: { _controller: "ChillReportBundle:report:create" } + defaults: { _controller: "ChillReportBundle:Report:create" } requirements: { _method: post } report_edit: path: /{id}/edit - defaults: { _controller: "ChillReportBundle:report:edit" } + defaults: { _controller: "ChillReportBundle:Report:edit" } report_update: path: /{id}/update - defaults: { _controller: "ChillReportBundle:report:update" } + defaults: { _controller: "ChillReportBundle:Report:update" } requirements: { _method: post|put } report_delete: path: /{id}/delete - defaults: { _controller: "ChillReportBundle:report:delete" } + defaults: { _controller: "ChillReportBundle:Report:delete" } requirements: { _method: post|delete }