ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
Text.php
Go to the documentation of this file.
1 <?php
2 
18 declare(strict_types=1);
19 
21 
25 class Text extends Tag
26 {
27  public function __construct(
28  string $property_name,
29  protected string $text,
30  ) {
31  parent::__construct($property_name);
32  }
33 
34  protected function getValue(): string
35  {
36  return $this->text;
37  }
38 }
__construct(VocabulariesInterface $vocabularies)
__construct(string $property_name, protected string $text,)
Definition: Text.php:27