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