Added the zend framework 2 library, the path is specified in line no.26 in zend_modul...
[openemr.git] / interface / modules / zend_modules / library / Zend / Mvc / Router / RouteInterface.php
blobc845e569c7e70bdc768b507b120664836ff62fc2
1 <?php
2 /**
3 * Zend Framework (http://framework.zend.com/)
5 * @link http://github.com/zendframework/zf2 for the canonical source repository
6 * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
7 * @license http://framework.zend.com/license/new-bsd New BSD License
8 */
10 namespace Zend\Mvc\Router;
12 use Zend\Stdlib\RequestInterface as Request;
14 /**
15 * RouteInterface interface.
17 interface RouteInterface
19 /**
20 * Priority used for route stacks.
22 * @var int
23 * public $priority;
26 /**
27 * Create a new route with given options.
29 * @param array|\Traversable $options
30 * @return void
32 public static function factory($options = array());
34 /**
35 * Match a given request.
37 * @param Request $request
38 * @return RouteMatch|null
40 public function match(Request $request);
42 /**
43 * Assemble the route.
45 * @param array $params
46 * @param array $options
47 * @return mixed
49 public function assemble(array $params = array(), array $options = array());