gitlab_medici/app/router/RouterFactory.php @ 793a2c68
1 |
<?php
|
---|---|
2 |
|
3 |
namespace App; |
4 |
|
5 |
use Nette; |
6 |
use Nette\Application\Routers\Route; |
7 |
use Nette\Application\Routers\RouteList; |
8 |
|
9 |
|
10 |
final class RouterFactory |
11 |
{
|
12 |
use Nette\StaticClass; |
13 |
|
14 |
/**
|
15 |
* @return Nette\Application\IRouter
|
16 |
*/
|
17 |
public static function createRouter() |
18 |
{
|
19 |
$router = new RouteList; |
20 |
$router[] = new Route('<presenter>/<action>[/<id>]', 'Homepage:default'); |
21 |
return $router; |
22 |
}
|
23 |
}
|