ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
NullBridge.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 
28 class NullBridge implements BridgeInterface
29 {
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