ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
NullReader.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
26
28{
29 public function vocabulary(string $vocab_id): VocabularyInterface
30 {
31 return new NullVocabulary();
32 }
33
37 public function vocabulariesForSlots(
38 SlotIdentifier ...$slots
39 ): \Generator {
40 yield from [];
41 }
42
47 SlotIdentifier ...$slots
48 ): \Generator {
49 yield from [];
50 }
51}
vocabulariesForSlots(SlotIdentifier ... $slots)
Definition: NullReader.php:37
activeVocabulariesForSlots(SlotIdentifier ... $slots)
Definition: NullReader.php:46