ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
TranslationDTO.php
Go to the documentation of this file.
1<?php
2
20
26{
27 public function __construct(
28 private readonly string $id,
29 private readonly string $language_code,
30 private readonly string $translation
31 ) {
32 }
33
34 public function getId(): string
35 {
36 return $this->id;
37 }
38
39 public function getLanguageCode(): string
40 {
41 return $this->language_code;
42 }
43
44 public function getTranslation(): string
45 {
46 return $this->translation;
47 }
48
49}
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
__construct(private readonly string $id, private readonly string $language_code, private readonly string $translation)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...