ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
NullItemInformation.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
27
32{
33 public function isItemActive(isItem $item): bool
34 {
35 return false;
36 }
37
38 public function customPosition(isItem $item): isItem
39 {
40 return $item;
41 }
42
44 {
45 return $item;
46 }
47
49 {
50 return new NullIdentification();
51 }
52
53}