ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
NullBridge.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
27
29{
30 public function vocabulary(SlotIdentifier $slot): ?VocabularyInterface
31 {
32 return null;
33 }
34
35 public function labelsForValues(
36 SlotIdentifier $slot,
37 string ...$values
38 ): \Generator {
39 yield from [];
40 }
41}
labelsForValues(SlotIdentifier $slot, string ... $values)
Values not from copyrights will not be returned at all.
Definition: NullBridge.php:35