Skip to content

Commit

Permalink
Additional doc tag fixes for Router.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Jan 26, 2010
1 parent 7e1863d commit 3a1b092
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion cake/libs/router.php
Expand Up @@ -371,6 +371,8 @@ function connectNamed($named, $options = array()) {
*
* @param boolean $connect Set to true or false depending on whether you want or don't want default routes.
* @return void
* @access public
* @static
*/
function defaults($connect = true) {
$self =& Router::getInstance();
Expand Down Expand Up @@ -861,6 +863,7 @@ function url($url = null, $full = false) {
*
* @param array $url A url that didn't match any routes
* @return string A generated url for the array
* @access protected
* @see Router::url()
*/
function _handleNoRoute($url) {
Expand Down Expand Up @@ -956,6 +959,7 @@ function getNamedElements($params, $controller = null, $action = null) {
* @param string $context An array with additional context information (controller / action)
* @return boolean
* @access public
* @static
*/
function matchNamed($param, $val, $rule, $context = array()) {
if ($rule === true || $rule === false) {
Expand Down Expand Up @@ -1020,6 +1024,7 @@ function queryString($q, $extra = array(), $escape = false) {
* @param array $param The params array that needs to be reversed.
* @return string The string that is the reversed result of the array
* @access public
* @static
*/
function reverse($params) {
$pass = $params['pass'];
Expand Down Expand Up @@ -1198,7 +1203,7 @@ function getArgs($args, $options = array()) {
*
* @package cake.libs
* @since 1.3.0
* @see Router::connect
* @see Router::connect()
*/
class CakeRoute {

Expand Down

0 comments on commit 3a1b092

Please sign in to comment.