Commit 49901bab authored by Taylor Otwell's avatar Taylor Otwell

tweaking a comment.

parent f0d3589b
...@@ -98,8 +98,8 @@ class URL { ...@@ -98,8 +98,8 @@ class URL {
{ {
$uris = explode(', ', key($route)); $uris = explode(', ', key($route));
// Grab the first URI assigned to the route, removing the request URI // Grab the first URI assigned to the route and remove the URI and
// and leading slash from the destination defined on the route. // leading slash from the destination that's defined on the route.
$uri = substr($uris[0], strpos($uris[0], '/')); $uri = substr($uris[0], strpos($uris[0], '/'));
// Spin through each route parameter and replace the route wildcard // Spin through each route parameter and replace the route wildcard
...@@ -110,8 +110,8 @@ class URL { ...@@ -110,8 +110,8 @@ class URL {
} }
// Replace all remaining optional segments with spaces. Since the // Replace all remaining optional segments with spaces. Since the
// segments are, obviously, optional, some of them may not have // segments are optional, some of them may not have been assigned
// been assigned values from the parameter array. // values from the parameter array.
return static::to(str_replace(array('/(:any?)', '/(:num?)'), '', $uri), $https); return static::to(str_replace(array('/(:any?)', '/(:num?)'), '', $uri), $https);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment