From 384fbefcb649b6c31106e705251fb7f7d8e85d76 Mon Sep 17 00:00:00 2001 From: antograssiot Date: Mon, 3 Aug 2015 14:32:45 +0200 Subject: [PATCH] change default to DashedRoute --- tests/comparisons/Plugin/Company/Example/config/routes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/comparisons/Plugin/Company/Example/config/routes.php b/tests/comparisons/Plugin/Company/Example/config/routes.php index 0c3efef70..514bfd54e 100644 --- a/tests/comparisons/Plugin/Company/Example/config/routes.php +++ b/tests/comparisons/Plugin/Company/Example/config/routes.php @@ -2,5 +2,5 @@ use Cake\Routing\Router; Router::plugin('Company/Example', function ($routes) { - $routes->fallbacks('InflectedRoute'); + $routes->fallbacks('DashedRoute'); });