ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
TokenContainer.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
25
31{
32 public function __construct(
33 private URLBuilder $builder,
35 ) {
36 }
37
38 public function builder(): URLBuilder
39 {
40 return $this->builder;
41 }
42
43 public function token(): URLBuilderToken
44 {
45 return $this->token;
46 }
47}
__construct(private URLBuilder $builder, private URLBuilderToken $token)
$token
Definition: xapitoken.php:70