basic code cleanup.

This commit is contained in:
Taylor Otwell
2012-02-23 14:02:59 -06:00
parent e69f988fe5
commit 157f619e98
3 changed files with 3 additions and 5 deletions

View File

@@ -205,7 +205,7 @@ class URL {
// We'll replace both dots and @ signs in the URI since both are used
// to specify the controller and action, and by convention should be
// translated into URI slashes.
// translated into URI slashes for the URL.
$uri = $root.'/'.str_replace(array('.', '@'), '/', $action);
$uri = static::to(str_finish($uri, '/').$parameters);