Поправил namespace

This commit is contained in:
CORP\phedor 2018-04-03 14:35:20 +03:00
parent bef7165777
commit ee06f1febb
4 changed files with 26 additions and 40 deletions

13
src/Url.php Normal file
View file

@ -0,0 +1,13 @@
<?php
namespace ctiso;
class Url {
function __construct($parts = []) {
$this->parts = $parts;
}
function toString() {
return '?' . http_build_query($this->parts);
}
}