Commit 6bd3dcb0 authored by Taylor Otwell's avatar Taylor Otwell

Update laravel/uri.php

parent 8b803fd3
...@@ -44,9 +44,9 @@ class URI { ...@@ -44,9 +44,9 @@ class URI {
// Format the final request URI. If there is nothing left, we will just // Format the final request URI. If there is nothing left, we will just
// return a single forward slash. Otherwise, we'll remove all of the // return a single forward slash. Otherwise, we'll remove all of the
// leading and trailing spaces from the URI before returning it. // leading and trailing spaces from the URI before returning it.
static::$uri = $uri = static::format($uri); static::$uri = static::format($uri);
static::$segments = explode('/', $uri); static::$segments = explode('/', static::$uri);
return static::$uri; return static::$uri;
} }
......
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