From abcc6d2663400ab10cf5cdfddb98e2b93418fb52 Mon Sep 17 00:00:00 2001 From: Abdul Malik Ikhsan Date: Tue, 12 Feb 2013 23:10:21 +0700 Subject: [PATCH 1/2] patch Router docblocks --- library/Zend/Mvc/Router/Console/Catchall.php | 6 +++--- library/Zend/Mvc/Router/Console/Simple.php | 6 +++--- library/Zend/Mvc/Router/Console/SimpleRouteStack.php | 6 +++--- library/Zend/Mvc/Router/Http/Hostname.php | 8 ++++---- library/Zend/Mvc/Router/Http/Literal.php | 8 ++++---- library/Zend/Mvc/Router/Http/Method.php | 8 ++++---- library/Zend/Mvc/Router/Http/Part.php | 8 ++++---- library/Zend/Mvc/Router/Http/Query.php | 8 ++++---- library/Zend/Mvc/Router/Http/Regex.php | 6 +++--- library/Zend/Mvc/Router/Http/Scheme.php | 8 ++++---- library/Zend/Mvc/Router/Http/Segment.php | 8 ++++---- library/Zend/Mvc/Router/Http/TreeRouteStack.php | 2 +- library/Zend/Mvc/Router/Http/Wildcard.php | 8 ++++---- library/Zend/Mvc/Router/SimpleRouteStack.php | 12 ++++++------ 14 files changed, 51 insertions(+), 51 deletions(-) diff --git a/library/Zend/Mvc/Router/Console/Catchall.php b/library/Zend/Mvc/Router/Console/Catchall.php index fcbeeb78778..918a04b8723 100644 --- a/library/Zend/Mvc/Router/Console/Catchall.php +++ b/library/Zend/Mvc/Router/Console/Catchall.php @@ -90,7 +90,7 @@ public function __construct(array $defaults = array()) /** * factory(): defined by Route interface. * - * @see Route::factory() + * @see \Zend\Mvc\Router\RouteInterface::factory() * @param array|Traversable $options * @return Simple */ @@ -118,7 +118,7 @@ public function match(Request $request) /** * assemble(): Defined by Route interface. * - * @see Route::assemble() + * @see \Zend\Mvc\Router\RouteInterface::assemble() * @param array $params * @param array $options * @return mixed @@ -131,7 +131,7 @@ public function assemble(array $params = array(), array $options = array()) /** * getAssembledParams(): defined by Route interface. * - * @see Route::getAssembledParams + * @see \Zend\Mvc\Router\RouteInterface::getAssembledParams * @return array */ public function getAssembledParams() diff --git a/library/Zend/Mvc/Router/Console/Simple.php b/library/Zend/Mvc/Router/Console/Simple.php index 90ed22d5be6..f382d46b61d 100644 --- a/library/Zend/Mvc/Router/Console/Simple.php +++ b/library/Zend/Mvc/Router/Console/Simple.php @@ -136,7 +136,7 @@ public function __construct( /** * factory(): defined by Route interface. * - * @see Route::factory() + * @see \Zend\Mvc\Router\RouteInterface::factory() * @param array|Traversable $options * @throws \Zend\Mvc\Router\Exception\InvalidArgumentException * @return Simple @@ -788,7 +788,7 @@ public function match(Request $request, $pathOffset = null) /** * assemble(): Defined by Route interface. * - * @see Route::assemble() + * @see \Zend\Mvc\Router\RouteInterface::assemble() * @param array $params * @param array $options * @return mixed @@ -801,7 +801,7 @@ public function assemble(array $params = array(), array $options = array()) /** * getAssembledParams(): defined by Route interface. * - * @see Route::getAssembledParams + * @see \Zend\Mvc\Router\RouteInterface::getAssembledParams * @return array */ public function getAssembledParams() diff --git a/library/Zend/Mvc/Router/Console/SimpleRouteStack.php b/library/Zend/Mvc/Router/Console/SimpleRouteStack.php index 5874e79cc54..fd4f55ce75e 100644 --- a/library/Zend/Mvc/Router/Console/SimpleRouteStack.php +++ b/library/Zend/Mvc/Router/Console/SimpleRouteStack.php @@ -22,7 +22,7 @@ class SimpleRouteStack extends BaseSimpleRouteStack /** * init(): defined by SimpleRouteStack. * - * @see SimpleRouteStack::init() + * @see BaseSimpleRouteStack::init() */ protected function init() { @@ -39,7 +39,7 @@ protected function init() /** * addRoute(): defined by RouteStackInterface interface. * - * @see RouteStack::addRoute() + * @see RouteStackInterface::addRoute() * @param string $name * @param mixed $route * @param integer $priority @@ -57,7 +57,7 @@ public function addRoute($name, $route, $priority = null) /** * routeFromArray(): defined by SimpleRouteStack. * - * @see SimpleRouteStack::routeFromArray() + * @see BaseSimpleRouteStack::routeFromArray() * @param array|Traversable $specs * @return RouteInterface * @throws Exception\InvalidArgumentException diff --git a/library/Zend/Mvc/Router/Http/Hostname.php b/library/Zend/Mvc/Router/Http/Hostname.php index 68e9bcbbb89..3ce66c4f205 100644 --- a/library/Zend/Mvc/Router/Http/Hostname.php +++ b/library/Zend/Mvc/Router/Http/Hostname.php @@ -66,7 +66,7 @@ public function __construct($route, array $constraints = array(), array $default /** * factory(): defined by RouteInterface interface. * - * @see Route::factory() + * @see \Zend\Mvc\Router\RouteInterface::factory() * @param array|Traversable $options * @throws \Zend\Mvc\Router\Exception\InvalidArgumentException * @return Hostname @@ -97,7 +97,7 @@ public static function factory($options = array()) /** * match(): defined by RouteInterface interface. * - * @see Route::match() + * @see \Zend\Mvc\Router\RouteInterface::match() * @param Request $request * @return RouteMatch */ @@ -133,7 +133,7 @@ public function match(Request $request) /** * assemble(): Defined by RouteInterface interface. * - * @see Route::assemble() + * @see \Zend\Mvc\Router\RouteInterface::assemble() * @param array $params * @param array $options * @return mixed @@ -171,7 +171,7 @@ public function assemble(array $params = array(), array $options = array()) /** * getAssembledParams(): defined by RouteInterface interface. * - * @see Route::getAssembledParams + * @see \Zend\Mvc\Router\RouteInterface::getAssembledParams * @return array */ public function getAssembledParams() diff --git a/library/Zend/Mvc/Router/Http/Literal.php b/library/Zend/Mvc/Router/Http/Literal.php index d42fffbeb03..f24824dba26 100644 --- a/library/Zend/Mvc/Router/Http/Literal.php +++ b/library/Zend/Mvc/Router/Http/Literal.php @@ -50,7 +50,7 @@ public function __construct($route, array $defaults = array()) /** * factory(): defined by RouteInterface interface. * - * @see Route::factory() + * @see \Zend\Mvc\Router\RouteInterface::factory() * @param array|Traversable $options * @throws Exception\InvalidArgumentException * @return Literal @@ -77,7 +77,7 @@ public static function factory($options = array()) /** * match(): defined by RouteInterface interface. * - * @see Route::match() + * @see \Zend\Mvc\Router\RouteInterface::match() * @param Request $request * @param int|null $pathOffset * @return RouteMatch|null @@ -111,7 +111,7 @@ public function match(Request $request, $pathOffset = null) /** * assemble(): Defined by RouteInterface interface. * - * @see Route::assemble() + * @see \Zend\Mvc\Router\RouteInterface::assemble() * @param array $params * @param array $options * @return mixed @@ -124,7 +124,7 @@ public function assemble(array $params = array(), array $options = array()) /** * getAssembledParams(): defined by RouteInterface interface. * - * @see Route::getAssembledParams + * @see \Zend\Mvc\Router\RouteInterface::getAssembledParams * @return array */ public function getAssembledParams() diff --git a/library/Zend/Mvc/Router/Http/Method.php b/library/Zend/Mvc/Router/Http/Method.php index 6efd25d8863..909ef357fa2 100644 --- a/library/Zend/Mvc/Router/Http/Method.php +++ b/library/Zend/Mvc/Router/Http/Method.php @@ -48,7 +48,7 @@ public function __construct($verb, array $defaults = array()) /** * factory(): defined by RouteInterface interface. * - * @see Route::factory() + * @see \Zend\Mvc\Router\RouteInterface::factory() * @param array|Traversable $options * @throws Exception\InvalidArgumentException * @return Method @@ -75,7 +75,7 @@ public static function factory($options = array()) /** * match(): defined by RouteInterface interface. * - * @see Route::match() + * @see \Zend\Mvc\Router\RouteInterface::match() * @param Request $request * @return RouteMatch|null */ @@ -99,7 +99,7 @@ public function match(Request $request) /** * assemble(): Defined by RouteInterface interface. * - * @see Route::assemble() + * @see \Zend\Mvc\Router\RouteInterface::assemble() * @param array $params * @param array $options * @return mixed @@ -113,7 +113,7 @@ public function assemble(array $params = array(), array $options = array()) /** * getAssembledParams(): defined by RouteInterface interface. * - * @see Route::getAssembledParams + * @see \Zend\Mvc\Router\RouteInterface::getAssembledParams * @return array */ public function getAssembledParams() diff --git a/library/Zend/Mvc/Router/Http/Part.php b/library/Zend/Mvc/Router/Http/Part.php index 0e2310e541f..152cbd31ad6 100644 --- a/library/Zend/Mvc/Router/Http/Part.php +++ b/library/Zend/Mvc/Router/Http/Part.php @@ -74,7 +74,7 @@ public function __construct($route, $mayTerminate, RoutePluginManager $routePlug /** * factory(): defined by RouteInterface interface. * - * @see Route::factory() + * @see \Zend\Mvc\Router\RouteInterface::factory() * @param mixed $options * @throws Exception\InvalidArgumentException * @return Part @@ -112,7 +112,7 @@ public static function factory($options = array()) /** * match(): defined by RouteInterface interface. * - * @see Route::match() + * @see \Zend\Mvc\Router\RouteInterface::match() * @param Request $request * @param int|null $pathOffset * @return RouteMatch|null @@ -155,7 +155,7 @@ public function match(Request $request, $pathOffset = null) /** * assemble(): Defined by RouteInterface interface. * - * @see Route::assemble() + * @see \Zend\Mvc\Router\RouteInterface::assemble() * @param array $params * @param array $options * @return mixed @@ -191,7 +191,7 @@ public function assemble(array $params = array(), array $options = array()) /** * getAssembledParams(): defined by RouteInterface interface. * - * @see Route::getAssembledParams + * @see \Zend\Mvc\Router\RouteInterface::getAssembledParams * @return array */ public function getAssembledParams() diff --git a/library/Zend/Mvc/Router/Http/Query.php b/library/Zend/Mvc/Router/Http/Query.php index a937bf1df89..6bf9567e93e 100644 --- a/library/Zend/Mvc/Router/Http/Query.php +++ b/library/Zend/Mvc/Router/Http/Query.php @@ -50,7 +50,7 @@ public function __construct(array $defaults = array()) /** * factory(): defined by RouteInterface interface. * - * @see Route::factory() + * @see \Zend\Mvc\Router\RouteInterface::factory() * @param array|Traversable $options * @throws Exception\InvalidArgumentException * @return Query @@ -74,7 +74,7 @@ public static function factory($options = array()) /** * match(): defined by RouteInterface interface. * - * @see Route::match() + * @see \Zend\Mvc\Router\RouteInterface::match() * @param Request $request * @param int|null $pathOffset * @return RouteMatch @@ -111,7 +111,7 @@ protected function recursiveUrldecode(array $array) /** * assemble(): Defined by RouteInterface interface. - * @see Route::assemble() + * @see \Zend\Mvc\Router\RouteInterface::assemble() * * @param array $params * @param array $options @@ -137,7 +137,7 @@ public function assemble(array $params = array(), array $options = array()) /** * getAssembledParams(): defined by RouteInterface interface. * - * @see Route::getAssembledParams + * @see \Zend\Mvc\Router\RouteInterface::getAssembledParams * @return array */ public function getAssembledParams() diff --git a/library/Zend/Mvc/Router/Http/Regex.php b/library/Zend/Mvc/Router/Http/Regex.php index 4155305e3dc..c1af5f64b13 100644 --- a/library/Zend/Mvc/Router/Http/Regex.php +++ b/library/Zend/Mvc/Router/Http/Regex.php @@ -68,7 +68,7 @@ public function __construct($regex, $spec, array $defaults = array()) /** * factory(): defined by RouteInterface interface. * - * @see Route::factory() + * @see \Zend\Mvc\Router\RouteInterface::factory() * @param array|Traversable $options * @throws \Zend\Mvc\Router\Exception\InvalidArgumentException * @return Regex @@ -138,7 +138,7 @@ public function match(Request $request, $pathOffset = null) /** * assemble(): Defined by RouteInterface interface. * - * @see Route::assemble() + * @see \Zend\Mvc\Router\RouteInterface::assemble() * @param array $params * @param array $options * @return mixed @@ -165,7 +165,7 @@ public function assemble(array $params = array(), array $options = array()) /** * getAssembledParams(): defined by RouteInterface interface. * - * @see Route::getAssembledParams + * @see \Zend\Mvc\Router\RouteInterface::getAssembledParams * @return array */ public function getAssembledParams() diff --git a/library/Zend/Mvc/Router/Http/Scheme.php b/library/Zend/Mvc/Router/Http/Scheme.php index 0c9893f9967..d890415ee88 100644 --- a/library/Zend/Mvc/Router/Http/Scheme.php +++ b/library/Zend/Mvc/Router/Http/Scheme.php @@ -50,7 +50,7 @@ public function __construct($scheme, array $defaults = array()) /** * factory(): defined by RouteInterface interface. * - * @see Route::factory() + * @see \Zend\Mvc\Router\RouteInterface::factory() * @param array|Traversable $options * @return Scheme * @throws Exception\InvalidArgumentException @@ -77,7 +77,7 @@ public static function factory($options = array()) /** * match(): defined by RouteInterface interface. * - * @see Route::match() + * @see \Zend\Mvc\Router\RouteInterface::match() * @param Request $request * @return RouteMatch */ @@ -100,7 +100,7 @@ public function match(Request $request) /** * assemble(): Defined by RouteInterface interface. * - * @see Route::assemble() + * @see \Zend\Mvc\Router\RouteInterface::assemble() * @param array $params * @param array $options * @return mixed @@ -118,7 +118,7 @@ public function assemble(array $params = array(), array $options = array()) /** * getAssembledParams(): defined by RouteInterface interface. * - * @see Route::getAssembledParams + * @see \Zend\Mvc\Router\RouteInterface::getAssembledParams * @return array */ public function getAssembledParams() diff --git a/library/Zend/Mvc/Router/Http/Segment.php b/library/Zend/Mvc/Router/Http/Segment.php index f8b92d514e0..430978db8ec 100644 --- a/library/Zend/Mvc/Router/Http/Segment.php +++ b/library/Zend/Mvc/Router/Http/Segment.php @@ -110,7 +110,7 @@ public function __construct($route, array $constraints = array(), array $default /** * factory(): defined by RouteInterface interface. * - * @see Route::factory() + * @see \Zend\Mvc\Router\RouteInterface::factory() * @param array|Traversable $options * @throws \Zend\Mvc\Router\Exception\InvalidArgumentException * @return Segment @@ -335,7 +335,7 @@ protected function buildPath(array $parts, array $mergedParams, $isOptional, $ha /** * match(): defined by RouteInterface interface. * - * @see Route::match() + * @see \Zend\Mvc\Router\RouteInterface::match() * @param Request $request * @param string|null $pathOffset * @return RouteMatch @@ -374,7 +374,7 @@ public function match(Request $request, $pathOffset = null) /** * assemble(): Defined by RouteInterface interface. * - * @see Route::assemble() + * @see \Zend\Mvc\Router\RouteInterface::assemble() * @param array $params * @param array $options * @return mixed @@ -394,7 +394,7 @@ public function assemble(array $params = array(), array $options = array()) /** * getAssembledParams(): defined by RouteInterface interface. * - * @see Route::getAssembledParams + * @see \Zend\Mvc\Router\RouteInterface::getAssembledParams * @return array */ public function getAssembledParams() diff --git a/library/Zend/Mvc/Router/Http/TreeRouteStack.php b/library/Zend/Mvc/Router/Http/TreeRouteStack.php index 33e3c6ca478..fc4ab8b68ce 100644 --- a/library/Zend/Mvc/Router/Http/TreeRouteStack.php +++ b/library/Zend/Mvc/Router/Http/TreeRouteStack.php @@ -62,7 +62,7 @@ protected function init() /** * addRoute(): defined by RouteStackInterface interface. * - * @see RouteStack::addRoute() + * @see RouteStackInterface::addRoute() * @param string $name * @param mixed $route * @param integer $priority diff --git a/library/Zend/Mvc/Router/Http/Wildcard.php b/library/Zend/Mvc/Router/Http/Wildcard.php index 01b40b7ad0f..f5064f88c80 100644 --- a/library/Zend/Mvc/Router/Http/Wildcard.php +++ b/library/Zend/Mvc/Router/Http/Wildcard.php @@ -66,7 +66,7 @@ public function __construct($keyValueDelimiter = '/', $paramDelimiter = '/', arr /** * factory(): defined by RouteInterface interface. * - * @see Route::factory() + * @see \Zend\Mvc\Router\RouteInterface::factory() * @param array|Traversable $options * @throws \Zend\Mvc\Router\Exception\InvalidArgumentException * @return Wildcard @@ -97,7 +97,7 @@ public static function factory($options = array()) /** * match(): defined by RouteInterface interface. * - * @see Route::match() + * @see \Zend\Mvc\Router\RouteInterface::match() * @param Request $request * @param int|null $pathOffset * @return RouteMatch @@ -152,7 +152,7 @@ public function match(Request $request, $pathOffset = null) /** * assemble(): Defined by RouteInterface interface. * - * @see Route::assemble() + * @see \Zend\Mvc\Router\RouteInterface::assemble() * @param array $params * @param array $options * @return mixed @@ -179,7 +179,7 @@ public function assemble(array $params = array(), array $options = array()) /** * getAssembledParams(): defined by RouteInterface interface. * - * @see Route::getAssembledParams + * @see \Zend\Mvc\Router\RouteInterface::getAssembledParams * @return array */ public function getAssembledParams() diff --git a/library/Zend/Mvc/Router/SimpleRouteStack.php b/library/Zend/Mvc/Router/SimpleRouteStack.php index 822ab31a45a..08625c81fb5 100644 --- a/library/Zend/Mvc/Router/SimpleRouteStack.php +++ b/library/Zend/Mvc/Router/SimpleRouteStack.php @@ -60,7 +60,7 @@ public function __construct(RoutePluginManager $routePluginManager = null) /** * factory(): defined by RouteInterface interface. * - * @see Route::factory() + * @see \Zend\Mvc\Router\RouteInterface::factory() * @param array|Traversable $options * @return SimpleRouteStack * @throws Exception\InvalidArgumentException @@ -124,7 +124,7 @@ public function getRoutePluginManager() /** * addRoutes(): defined by RouteStackInterface interface. * - * @see RouteStack::addRoutes() + * @see RouteStackInterface::addRoutes() * @param array|Traversable $routes * @return SimpleRouteStack * @throws Exception\InvalidArgumentException @@ -145,7 +145,7 @@ public function addRoutes($routes) /** * addRoute(): defined by RouteStackInterface interface. * - * @see RouteStack::addRoute() + * @see RouteStackInterface::addRoute() * @param string $name * @param mixed $route * @param integer $priority @@ -169,7 +169,7 @@ public function addRoute($name, $route, $priority = null) /** * removeRoute(): defined by RouteStackInterface interface. * - * @see RouteStack::removeRoute() + * @see RouteStackInterface::removeRoute() * @param string $name * @return SimpleRouteStack */ @@ -282,7 +282,7 @@ protected function routeFromArray($specs) /** * match(): defined by RouteInterface interface. * - * @see Route::match() + * @see \Zend\Mvc\Router\RouteInterface::match() * @param Request $request * @return RouteMatch|null */ @@ -308,7 +308,7 @@ public function match(Request $request) /** * assemble(): defined by RouteInterface interface. * - * @see Route::assemble() + * @see \Zend\Mvc\Router\RouteInterface::assemble() * @param array $params * @param array $options * @return mixed From 64a56a9a7526e558fea46d06d917d1b00efffd91 Mon Sep 17 00:00:00 2001 From: Abdul Malik Ikhsan Date: Tue, 12 Feb 2013 23:16:07 +0700 Subject: [PATCH 2/2] getAssembledParams() is in RouteInterface in current namespace --- library/Zend/Mvc/Router/Console/Catchall.php | 2 +- library/Zend/Mvc/Router/Console/Simple.php | 2 +- library/Zend/Mvc/Router/Http/Hostname.php | 2 +- library/Zend/Mvc/Router/Http/Literal.php | 2 +- library/Zend/Mvc/Router/Http/Method.php | 2 +- library/Zend/Mvc/Router/Http/Part.php | 2 +- library/Zend/Mvc/Router/Http/Query.php | 2 +- library/Zend/Mvc/Router/Http/Regex.php | 2 +- library/Zend/Mvc/Router/Http/Scheme.php | 2 +- library/Zend/Mvc/Router/Http/Segment.php | 2 +- library/Zend/Mvc/Router/Http/Wildcard.php | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/library/Zend/Mvc/Router/Console/Catchall.php b/library/Zend/Mvc/Router/Console/Catchall.php index 918a04b8723..fadcafb6c28 100644 --- a/library/Zend/Mvc/Router/Console/Catchall.php +++ b/library/Zend/Mvc/Router/Console/Catchall.php @@ -131,7 +131,7 @@ public function assemble(array $params = array(), array $options = array()) /** * getAssembledParams(): defined by Route interface. * - * @see \Zend\Mvc\Router\RouteInterface::getAssembledParams + * @see RouteInterface::getAssembledParams * @return array */ public function getAssembledParams() diff --git a/library/Zend/Mvc/Router/Console/Simple.php b/library/Zend/Mvc/Router/Console/Simple.php index f382d46b61d..3ced9f5e942 100644 --- a/library/Zend/Mvc/Router/Console/Simple.php +++ b/library/Zend/Mvc/Router/Console/Simple.php @@ -801,7 +801,7 @@ public function assemble(array $params = array(), array $options = array()) /** * getAssembledParams(): defined by Route interface. * - * @see \Zend\Mvc\Router\RouteInterface::getAssembledParams + * @see RouteInterface::getAssembledParams * @return array */ public function getAssembledParams() diff --git a/library/Zend/Mvc/Router/Http/Hostname.php b/library/Zend/Mvc/Router/Http/Hostname.php index 3ce66c4f205..22a5edb4daf 100644 --- a/library/Zend/Mvc/Router/Http/Hostname.php +++ b/library/Zend/Mvc/Router/Http/Hostname.php @@ -171,7 +171,7 @@ public function assemble(array $params = array(), array $options = array()) /** * getAssembledParams(): defined by RouteInterface interface. * - * @see \Zend\Mvc\Router\RouteInterface::getAssembledParams + * @see RouteInterface::getAssembledParams * @return array */ public function getAssembledParams() diff --git a/library/Zend/Mvc/Router/Http/Literal.php b/library/Zend/Mvc/Router/Http/Literal.php index f24824dba26..302628e64b1 100644 --- a/library/Zend/Mvc/Router/Http/Literal.php +++ b/library/Zend/Mvc/Router/Http/Literal.php @@ -124,7 +124,7 @@ public function assemble(array $params = array(), array $options = array()) /** * getAssembledParams(): defined by RouteInterface interface. * - * @see \Zend\Mvc\Router\RouteInterface::getAssembledParams + * @see RouteInterface::getAssembledParams * @return array */ public function getAssembledParams() diff --git a/library/Zend/Mvc/Router/Http/Method.php b/library/Zend/Mvc/Router/Http/Method.php index 909ef357fa2..1791c9bffd0 100644 --- a/library/Zend/Mvc/Router/Http/Method.php +++ b/library/Zend/Mvc/Router/Http/Method.php @@ -113,7 +113,7 @@ public function assemble(array $params = array(), array $options = array()) /** * getAssembledParams(): defined by RouteInterface interface. * - * @see \Zend\Mvc\Router\RouteInterface::getAssembledParams + * @see RouteInterface::getAssembledParams * @return array */ public function getAssembledParams() diff --git a/library/Zend/Mvc/Router/Http/Part.php b/library/Zend/Mvc/Router/Http/Part.php index 152cbd31ad6..0a7db6ad878 100644 --- a/library/Zend/Mvc/Router/Http/Part.php +++ b/library/Zend/Mvc/Router/Http/Part.php @@ -191,7 +191,7 @@ public function assemble(array $params = array(), array $options = array()) /** * getAssembledParams(): defined by RouteInterface interface. * - * @see \Zend\Mvc\Router\RouteInterface::getAssembledParams + * @see RouteInterface::getAssembledParams * @return array */ public function getAssembledParams() diff --git a/library/Zend/Mvc/Router/Http/Query.php b/library/Zend/Mvc/Router/Http/Query.php index 6bf9567e93e..eedd5f0d13b 100644 --- a/library/Zend/Mvc/Router/Http/Query.php +++ b/library/Zend/Mvc/Router/Http/Query.php @@ -137,7 +137,7 @@ public function assemble(array $params = array(), array $options = array()) /** * getAssembledParams(): defined by RouteInterface interface. * - * @see \Zend\Mvc\Router\RouteInterface::getAssembledParams + * @see RouteInterface::getAssembledParams * @return array */ public function getAssembledParams() diff --git a/library/Zend/Mvc/Router/Http/Regex.php b/library/Zend/Mvc/Router/Http/Regex.php index c1af5f64b13..8b153f089bd 100644 --- a/library/Zend/Mvc/Router/Http/Regex.php +++ b/library/Zend/Mvc/Router/Http/Regex.php @@ -165,7 +165,7 @@ public function assemble(array $params = array(), array $options = array()) /** * getAssembledParams(): defined by RouteInterface interface. * - * @see \Zend\Mvc\Router\RouteInterface::getAssembledParams + * @see RouteInterface::getAssembledParams * @return array */ public function getAssembledParams() diff --git a/library/Zend/Mvc/Router/Http/Scheme.php b/library/Zend/Mvc/Router/Http/Scheme.php index d890415ee88..a19c67149e2 100644 --- a/library/Zend/Mvc/Router/Http/Scheme.php +++ b/library/Zend/Mvc/Router/Http/Scheme.php @@ -118,7 +118,7 @@ public function assemble(array $params = array(), array $options = array()) /** * getAssembledParams(): defined by RouteInterface interface. * - * @see \Zend\Mvc\Router\RouteInterface::getAssembledParams + * @see RouteInterface::getAssembledParams * @return array */ public function getAssembledParams() diff --git a/library/Zend/Mvc/Router/Http/Segment.php b/library/Zend/Mvc/Router/Http/Segment.php index 430978db8ec..1be9dc2aec9 100644 --- a/library/Zend/Mvc/Router/Http/Segment.php +++ b/library/Zend/Mvc/Router/Http/Segment.php @@ -394,7 +394,7 @@ public function assemble(array $params = array(), array $options = array()) /** * getAssembledParams(): defined by RouteInterface interface. * - * @see \Zend\Mvc\Router\RouteInterface::getAssembledParams + * @see RouteInterface::getAssembledParams * @return array */ public function getAssembledParams() diff --git a/library/Zend/Mvc/Router/Http/Wildcard.php b/library/Zend/Mvc/Router/Http/Wildcard.php index f5064f88c80..eb4e6c1a1e3 100644 --- a/library/Zend/Mvc/Router/Http/Wildcard.php +++ b/library/Zend/Mvc/Router/Http/Wildcard.php @@ -179,7 +179,7 @@ public function assemble(array $params = array(), array $options = array()) /** * getAssembledParams(): defined by RouteInterface interface. * - * @see \Zend\Mvc\Router\RouteInterface::getAssembledParams + * @see RouteInterface::getAssembledParams * @return array */ public function getAssembledParams()