@@ -70,7 +70,7 @@ interface RouteStackInterface extends RouteInterface
70
70
```
71
71
72
72
Routes will be queried in a LIFO order, and hence the reason behind the name
73
- ` RouteStack ` . zend-mvc provides two implementations of this interface,
73
+ ` RouteStack ` . zend-router provides two implementations of this interface,
74
74
` SimpleRouteStack ` and ` TreeRouteStack ` . In each, you register routes either one
75
75
at a time using ` addRoute() ` , or in bulk using ` addRoutes() ` .
76
76
@@ -108,7 +108,7 @@ $router->addRoutes([
108
108
109
109
Two routers are provided, the ` SimpleRouteStack ` and ` TreeRouteStack ` . Each
110
110
works with the above interface, but utilize slightly different options and
111
- execution paths. By default, the zend-mvc uses the ` TreeRouteStack ` as the
111
+ execution paths. By default, the zend-router uses the ` TreeRouteStack ` as the
112
112
router.
113
113
114
114
### SimpleRouteStack
@@ -151,9 +151,9 @@ route.
151
151
152
152
## HTTP Route Types
153
153
154
- zend-mvc ships with the following HTTP route types.
154
+ zend-router ships with the following HTTP route types.
155
155
156
- ### Zend\\ Mvc \\ Router\\ Http\\ Hostname
156
+ ### Zend\\ Router\\ Http\\ Hostname
157
157
158
158
The ` Hostname ` route attempts to match the hostname registered in the request
159
159
against specific criteria. Typically, this will be in one of the following
@@ -198,7 +198,7 @@ $route = Hostname::factory([
198
198
When matched, the above will return two keys in the ` RouteMatch ` , "subdomain"
199
199
and "type".
200
200
201
- ### Zend\\ Mvc \\ Router\\ Http\\ Literal
201
+ ### Zend\\ Router\\ Http\\ Literal
202
202
203
203
The ` Literal ` route is for doing exact matching of the URI path. Configuration
204
204
therefore is solely the path you want to match, and the "defaults", or
@@ -217,7 +217,7 @@ $route = Literal::factory([
217
217
The above route would match a path "/foo", and return the key "action" in the
218
218
` RouteMatch ` , with the value "foo".
219
219
220
- ### Zend\\ Mvc \\ Router\\ Http\\ Method
220
+ ### Zend\\ Router\\ Http\\ Method
221
221
222
222
The ` Method ` route is used to match the HTTP method or 'verb' specified in the
223
223
request (See RFC 2616 Sec. 5.1.1). It can optionally be configured to match
@@ -236,7 +236,7 @@ $route = Method::factory([
236
236
The above route would match an http "POST" or "PUT" request and return a
237
237
` RouteMatch ` object containing a key "action" with a value of "form-submit".
238
238
239
- ### Zend\\ Mvc \\ Router\\ Http\\ Part
239
+ ### Zend\\ Router\\ Http\\ Part
240
240
241
241
A ` Part ` route allows crafting a tree of possible routes based on segments of
242
242
the URI path. It actually extends the ` TreeRouteStack ` .
@@ -353,7 +353,7 @@ You may use any route type as a child route of a `Part` route.
353
353
> set up by default, and the developer does not need to worry about autoloading
354
354
> of standard HTTP routes.
355
355
356
- ### Zend\\Mvc\\ Router\\Http\\Regex
356
+ ### Zend\\Router\\Http\\Regex
357
357
358
358
A `Regex` route utilizes a regular expression to match against the URI path. Any
359
359
valid regular expression is allowed; our recommendation is to use named captures
@@ -385,7 +385,7 @@ items in the `RouteMatch`, an "id", the "controller", the "action", and the
385
385
"format". When assembling a URL from this route, the "id" and "format" values
386
386
would be used to fill the specification.
387
387
388
- ### Zend\\ Mvc \\ Router\\ Http\\ Scheme
388
+ ### Zend\\ Router\\ Http\\ Scheme
389
389
390
390
The ` Scheme ` route matches the URI scheme only, and must be an exact match. As
391
391
such, this route, like the ` Literal ` route, simply takes what you want to match
@@ -403,7 +403,7 @@ $route = Scheme::factory([
403
403
The above route would match the "https" scheme, and return the key "https" in
404
404
the ` RouteMatch ` with a boolean ` true ` value.
405
405
406
- ### Zend\\ Mvc \\ Router\\ Http\\ Segment
406
+ ### Zend\\ Router\\ Http\\ Segment
407
407
408
408
A ` Segment ` route allows matching any segment of a URI path. Segments are
409
409
denoted using a colon, followed by alphanumeric characters; if a segment is
@@ -440,7 +440,7 @@ $route = Segment::factory([
440
440
]);
441
441
```
442
442
443
- ### Zend\\ Mvc \\ Router\\ Http\\ Query (Deprecated)
443
+ ### Zend\\ Router\\ Http\\ Query (Deprecated)
444
444
445
445
> #### Potential security issue
446
446
>
@@ -507,7 +507,7 @@ will then be appended as a query string.
507
507
The output from our example should then be
508
508
` /page/my-test-page?format=rss&limit=10 `
509
509
510
- ### Zend\\ Mvc \\ Router\\ Http\\ Wildcard (Deprecated)
510
+ ### Zend\\ Router\\ Http\\ Wildcard (Deprecated)
511
511
512
512
> #### Potential security issue
513
513
>
0 commit comments