From 5637ec01db5ee193d31ccf412cbfb96c99f5f17a Mon Sep 17 00:00:00 2001 From: Unknown Date: Wed, 2 May 2018 16:28:32 -0300 Subject: [PATCH] new routes default --- app/config/MyRoutes.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app/config/MyRoutes.php b/app/config/MyRoutes.php index f47ac93..5818f5e 100644 --- a/app/config/MyRoutes.php +++ b/app/config/MyRoutes.php @@ -2,6 +2,9 @@ namespace App\Config; +use App\Control\Contato\CityForm; +use App\Control\Contato\ContatoForm; +use App\Control\Contato\ContatoList; use Dvi\Adianti\Route; /** @@ -20,7 +23,9 @@ public static function getRoutes() { $routes = parent::getRoutes(); - //$routes['test'] = 'path/TestClass'; //Test::class; + $routes['ContatoForm'] = ContatoForm::class; + $routes['ContatoList'] = ContatoList::class; + $routes['CityForm'] = CityForm::class; return $routes; }