1 <?php
 2 /**
 3  * Cross - a micro PHP 5 framework
 4  *
 5  * @link        http://www.crossphp.com
 6  * @license     MIT License
 7  */
 8 namespace Cross\I;
 9 
10 /**
11  * Interface RouterInterface
12  *
13  * @package Cross\I
14  */
15 interface RouterInterface
16 {
17     /**
18      * @return mixed controller
19      */
20     function getController();
21 
22     /**
23      * @return mixed action
24      */
25     function getAction();
26 
27     /**
28      * @return mixed params
29      */
30     function getParams();
31 }
32