RouterFactory.php 318 B

123456789101112131415161718192021
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Router;
  4. use Nette;
  5. use Nette\Application\Routers\RouteList;
  6. final class RouterFactory
  7. {
  8. use Nette\StaticClass;
  9. public static function createRouter(): RouteList
  10. {
  11. $router = new RouteList;
  12. $router->addRoute('<presenter>/<action>[/<id>]');
  13. return $router;
  14. }
  15. }