ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
DocumentContent.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24{
25 public function __construct(
26 private readonly string $type,
27 private readonly string $title,
28 private readonly string $value,
29 ) {
30 }
31
32 public function type(): string
33 {
34 return $this->type;
35 }
36
37 public function title(): string
38 {
39 return $this->title;
40 }
41
42 public function value(): string
43 {
44 return $this->value;
45 }
46}
__construct(private readonly string $type, private readonly string $title, private readonly string $value,)