ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Text.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
26class Text extends Tag
27{
28 public function __construct(
29 string $property_name,
30 protected string $text,
31 ) {
32 parent::__construct($property_name);
33 }
34
35 protected function getValue(): string
36 {
37 return $this->text;
38 }
39}
__construct(string $property_name, protected string $text,)
Definition: Text.php:28
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc