mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 02:56:15 +00:00
Minor comments only. Added more explanation of $defaults parameter to Router::connect(). Trying to clarify how it relates to the routing destination and the template string tokens.
This commit is contained in:
parent
ae3c791b6c
commit
9691e54248
1 changed files with 4 additions and 0 deletions
|
@ -269,6 +269,9 @@ class Router {
|
|||
*
|
||||
* Shows connecting a route with custom route parameters as well as providing patterns for those parameters.
|
||||
* Patterns for routing parameters do not need capturing groups, as one will be added for each route params.
|
||||
*
|
||||
* $defaults is merged with the results of parsing the request URL to form the final routing destination and its
|
||||
* parameters. This destination is expressed as an associative array by Router. See the output of {@link parse()}.
|
||||
*
|
||||
* $options offers four 'special' keys. `pass`, `named`, `persist` and `routeClass`
|
||||
* have special meaning in the $options array.
|
||||
|
@ -304,6 +307,7 @@ class Router {
|
|||
* shifted into the passed arguments, supplying patterns for routing parameters and supplying the name of a
|
||||
* custom routing class.
|
||||
* @see routes
|
||||
* @see parse().
|
||||
* @return array Array of routes
|
||||
* @throws RouterException
|
||||
*/
|
||||
|
|
Loading…
Add table
Reference in a new issue