Skip to content
This repository has been archived by the owner on May 17, 2022. It is now read-only.

Commit

Permalink
new routes default
Browse files Browse the repository at this point in the history
  • Loading branch information
DaviMenezes committed May 2, 2018
1 parent 8faea51 commit 5637ec0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion app/config/MyRoutes.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

/**
Expand All @@ -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;
}
Expand Down

0 comments on commit 5637ec0

Please sign in to comment.