- Fixed issue with parsing parameters on some occasion.
- Optimisations.
This commit is contained in:
Simon Sessingø
2017-11-27 02:03:12 +01:00
parent bdfc36ed5c
commit efd5159604
7 changed files with 33 additions and 26 deletions
+8 -8
View File
@@ -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)