Implement basic router and a controller for simfile API. Need to make some changes...
[rock.divinelegy.git] / Services / Routing / IRoute.php
index 4882302..cb37bca 100644 (file)
@@ -6,5 +6,6 @@ interface IRoute
 {
     public function matches($uri);
     public function supports($method);
-    public function execute();
+    public function getControllerName();
+    public function getActionName();
 }