ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
NullBaseElement.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
26
28{
29 public function getMDID(): int|NoID
30 {
31 return 0;
32 }
33
35 {
36 return new NullDefinition();
37 }
38
39 public function getSubElements(): \Generator
40 {
41 yield from [];
42 }
43
45 {
46 return null;
47 }
48
49 public function isRoot(): bool
50 {
51 return false;
52 }
53}
getDefinition()
Defining properties of the metadata element.