ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
URIBuilder.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
25
29interface URIBuilder
30{
31 public function build(
32 string $namespace,
33 ?ReferenceId $reference_id = null,
34 array $additional_parameters = []
35 ): URI;
36
37 public function getBaseURI(): URI;
38}
The scope of this class is split ilias-conform URI's into components.
Definition: URI.php:35
if($err=$client->getError()) $namespace
build(string $namespace, ?ReferenceId $reference_id=null, array $additional_parameters=[])