mirror of
https://github.com/skipperbent/simple-php-router.git
synced 2026-07-11 06:42:12 +00:00
Bugfixes
- Fixed issue with parsing parameters on some occasion. - Optimisations.
This commit is contained in:
@@ -6,14 +6,14 @@ class Uri
|
||||
{
|
||||
private $originalUrl;
|
||||
private $data = [
|
||||
'scheme' => '',
|
||||
'host' => '',
|
||||
'port' => '',
|
||||
'user' => '',
|
||||
'pass' => '',
|
||||
'path' => '',
|
||||
'query' => '',
|
||||
'fragment' => '',
|
||||
'scheme' => null,
|
||||
'host' => null,
|
||||
'port' => null,
|
||||
'user' => null,
|
||||
'pass' => null,
|
||||
'path' => null,
|
||||
'query' => null,
|
||||
'fragment' => null,
|
||||
];
|
||||
|
||||
public function __construct($url)
|
||||
|
||||
Reference in New Issue
Block a user