| 12345678910111213141516171819202122232425262728293031323334353637 | <?php/** * * Cube Framework $Id$ UKVfneVKxfjtcfzZjCB35nxhj44Q71fTenlGkXVEK2E= * * @link        http://codecu.be/framework * @copyright   Copyright (c) 2015 CodeCube SRL * @license     http://codecu.be/framework/license Commercial License * * @version     1.4 *//** * route object interface */namespace Cube\Controller\Router\Route;/** * Interface RouteInterface * * @package Cube\Controller\Router\Route */interface RouteInterface{    /**     *     * match the route to a request uri     *     * @param string $requestUri     *     * @return mixed     */    public function match($requestUri);}
 |