Implement basic router and a controller for simfile API. Need to make some changes...
[rock.divinelegy.git] / Services / Routing / IRouter.php
1 <?php
2
3 namespace Services\Routing;
4
5 interface IRouter
6 {
7 public function getControllerName();
8 public function getActionName();
9 }