Added Uri class which can be used to parse urls.

This commit is contained in:
Simon Sessingø
2017-08-23 16:10:15 +01:00
parent 7e8cb91f68
commit 7c970c442c
+13
View File
@@ -0,0 +1,13 @@
<?php
namespace Pecee\Http;
class Url {
protected $url;
public function __construct()
{
}
}