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

Commit

Permalink
added new route file application
Browse files Browse the repository at this point in the history
  • Loading branch information
DaviMenezes committed Feb 23, 2018
1 parent 70384b1 commit 298c937
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions app/config/MyRoutes.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?php

namespace App\Config;

use Dvi\Adianti\Route;

/**
* Config MyRoutes
*
* @version Dvi 1.0
* @package Config
* @subpackage App
* @author Davi Menezes
* @copyright Copyright (c) 2018. ([email protected])
* @link https://github.com/DaviMenezes
*/
class MyRoutes extends Route
{
public static function getRoutes()
{
$routes = parent::getRoutes();

//$routes['test'] = 'path/TestClass'; //Test::class;

return $routes;
}
}

0 comments on commit 298c937

Please sign in to comment.