ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
URIBuilder.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\StaticURL\Builder;
22 
23 use ILIAS\Data\URI;
25 
29 interface 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 }
if($err=$client->getError()) $namespace
The scope of this class is split ilias-conform URI&#39;s into components.
Definition: URI.php:34
build(string $namespace, ?ReferenceId $reference_id=null, array $additional_parameters=[])