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

Refactor the request class.

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