ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
MetaDatum.php
Go to the documentation of this file.
2
9{
13 protected $key;
17 protected $value;
18
19 public function __construct(string $key, string $value)
20 {
21 $this->key = $key;
22 $this->value = $value;
23 }
24
25 public function getKey() : string
26 {
27 return $this->key;
28 }
29
30 public function getValue() : string
31 {
32 return $this->value;
33 }
34
35}
An exception for terminatinating execution or to throw for unit testing.