Browse Source

Update routes.php

Mark Sch 9 years ago
parent
commit
e709a18841
1 changed files with 2 additions and 1 deletions
  1. 2 1
      config/routes.php

+ 2 - 1
config/routes.php

@@ -1,6 +1,7 @@
 <?php
+use Cake\Routing\Route\DashedRoute;
 use Cake\Routing\Router;
 
 Router::plugin('Tools', function ($routes) {
-	$routes->fallbacks('DashedRoute');
+	$routes->fallbacks(DashedRoute::class);
 });