ACC SHELL

Path : /srv/www/vhosts/calyx/old/qad/app/router/
File Upload :
Current File : //srv/www/vhosts/calyx/old/qad/app/router/RouterFactory.php

<?php

use Nette\Application\Routers\RouteList,
	Nette\Application\Routers\Route,
	Nette\Application\Routers\SimpleRouter;


/**
 * Router factory.
 */
class RouterFactory
{

	/**
	 * @return Nette\Application\IRouter
	 */
	public function createRouter()
	{
		$router = new RouteList();
		$router[] = new Route('<presenter>/<action>[/<id>]', 'Homepage:default');
		return $router;
	}

}

ACC SHELL 2018