| 1 | <?php |
||
| 17 | class UrlBuilder implements UrlBuilderInterface |
||
| 18 | { |
||
| 19 | private $scheme; |
||
| 20 | private $hostname; |
||
| 21 | private $subdomain; |
||
| 22 | private $resource; |
||
| 23 | |||
| 24 | 17 | public function __construct( |
|
| 35 | |||
| 36 | 12 | public function getUrl() |
|
| 49 | |||
| 50 | /** |
||
| 51 | * @param string $path |
||
| 52 | * @return string |
||
| 53 | */ |
||
| 54 | 12 | private function getCleanPath($path) |
|
| 62 | } |
||
| 63 |