| 1 | <?php |
||
| 11 | final class UriFactory |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | private $schemaHost; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @ContextSchema |
||
| 20 | */ |
||
| 21 | public function __construct(string $schemaHost = 'page://self') |
||
| 25 | |||
| 26 | public function __invoke($uri, array $query = []) |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @throws UriException |
||
| 37 | */ |
||
| 38 | private function validate(string $uri) |
||
| 46 | } |
||
| 47 |