Commit 88ebf612 authored by Taylor Otwell's avatar Taylor Otwell

Refactor the request class.

parent 3d684136
...@@ -29,15 +29,11 @@ class Request { ...@@ -29,15 +29,11 @@ class Request {
$uri = static::raw_uri(); $uri = static::raw_uri();
if (strpos($uri, $base = parse_url(Config::get('application.url'), PHP_URL_PATH)) === 0) $base = parse_url(Config::get('application.url'), PHP_URL_PATH);
{
$uri = substr($uri, strlen($base));
}
if (strpos($uri, $index = '/index.php') === 0) if (strpos($uri, $base) === 0) $uri = substr($uri, strlen($base));
{
$uri = substr($uri, strlen($index)); if (strpos($uri, $index = '/index.php') === 0) $uri = substr($uri, strlen($index));
}
return static::$uri = (($uri = trim($uri, '/')) == '') ? '/' : $uri; return static::$uri = (($uri = trim($uri, '/')) == '') ? '/' : $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